Gediminas Morkevicius

Results 92 comments of Gediminas Morkevicius
trafficstars

you should PR to https://github.com/Atlantic18/DoctrineExtensions regarding mapping, you can extend the loggable mapped supperclass instead and modify the annotation for objectId to be integer instead. Although, loggable is not that...

It is possible to wrap request body as interface. Allocation could be avoided if parameters would be built with each route on initialization See the example: ``` go package vanilla...

@tj guess you should be very excited to see this https://github.com/DATA-DOG/fastroute have a look at **Router** interface maybe it is not the right place to add such a link, but...

hi @riannucci the compose option is not about it, the issue is about execution results. When **goconvey** runs `go test -v` it scrapes the output in order to provide results...

Hi, yes, at the moment, `godog` binary does not provide build flags, duplicate of #154 this is going to be implemented someday later, for now I suggest to integrate godog...

Hi, I think testing.T is something worth considering, but I'm afraid such methods as t.Fatal are something which godog cannot handle and they will be exposed. If we can make...

Hi, `godog` works the same as `go test` you must have all test files in package you are testing. Go cannot import tests from other packages, that is the language...

godog looks only in the current directory you run from. If go supports looking for test files in packages suffixed by `_test` then I was not aware of it and...

in most of the cases godog is used for functional tests and it is run from a single package, which contains all the public user facing interface. given it is...

Hi, it is pleasant to see the adoption of cucumber in go user space. Now concerning the integration with ginkgo, as far as I can see, only two options pop...