DEV Community

Discussion on: How I write my unit tests in Go quickly

Collapse
 
ilyakaznacheev profile image
Ilya Kaznacheev

Looks interesting too. I don't really like the regex part, because that means, that you have to have the spec file and the test file with the same steps, and if you will change the spec file it may occasionally break tests. But as an example of cucumber itself, it is nice. I'll try to use it in my next project.