Godog Versions Save

Cucumber for golang

v0.7.9

5 years ago

v0.7.8

5 years ago

minor patches

v0.7.7

5 years ago

v0.7.6

6 years ago

v0.7.5

6 years ago
  • support added for go1.10 compiler and linker changes

v0.7.4

6 years ago

see CHANGELOG.md

closed:

  • #96
  • #98
  • #97

v0.7.3

6 years ago
  • Example table cells were not replaced in step argument like table body or content string. See #92
  • Also scenario outline was not pretty printed well with default format.

v0.7.2

7 years ago

Some minor changes to reflect correct exit codes related to command line option errors.

v0.7.1

7 years ago

There was a bug, when undefined steps followed after a failing step - suite was passing.

v0.7.0

7 years ago

2017-04-29

  • added support for nested steps. From now on, it is possible to return godog.Steps instead of an error in the step definition func. This change introduced few minor changes in Formatter interface. Be sure to adapt the changes if you have custom formatters.

2017-04-27

  • added an option to randomize scenario execution order, so we could ensure that scenarios do not depend on global state.
  • godog was manually sorting feature files by name. Now it just runs them in given order, you may sort them anyway you like. For example godog $(find . -name '*.feature' | sort)