Maxime Soulé
Maxime Soulé
Interesting idea, but it is not as easy as it seems as you probably want the following works too: ``` "$^Bag(SuperMapOf({\"foo\":123}))" ``` for example, so the JSON parser has to...
You are completely right! We should even compare against testify, go-cmp and probably some others testing frameworks as go-testdeep outperforms most of them :) But as other writings, it takes...
Until a more detailed report, the presentation has been updated and 2 slides now talk about "differences": - https://go-testdeep.zetta.rocks/prez/#6 - https://go-testdeep.zetta.rocks/prez/#7
Hi, thanks for your interest. The `td.TestDeep` interface is, at the time of writing, intentionally unimplementable outside go-testdeep repository to allow it to change in the future if needed. Note...
Or using tags: ```golang type Options struct { Name string `flaggy:"n,name,rest is description"` // short=n, long=name Address string `flaggy:",address"` // no short, long=address, without description Subscribed bool `flaggy:"s"` // short=s,...
Just for the note, lua code should be: ```lua return string.match(git_message, "%[skip ci%]") == nil ```
Fixes golang/go/issues/56130
Closes golang/go/issues/56133
Same error when a comment is present between `-- +migrate StatementEnd` and `-- +migrate Down`
Seems to be OK with 48fb62e01c6f5d73d6650c4c9f54d1141b3c79a1. Sorry for the noise.