Releases: go-bdd/gobdd
Releases · go-bdd/gobdd
Use both feature and scenario tags in skipScenario
Thanks @jirikuncar for your work!
v1.1.2
v1.1.1: fix issue with not ignoring whole features using tags (#120)
- fix issue with not ignoring whole features using tags #120
v1.1.0
Add parameter types
GoBDD now supports parameter types.
You can use one of pre-defined or define your own.
v1.0.1
First stable version!
First stable version. Since now, every not backwards compatible API changes will increase the major number.
The biggest change compared to the previous version is removing the testhttp
package.
v0.7.0
v1.0-alfa
Simplified AddStep function
- Right now,
AddStep
doesn't return errors. Errors are logged inRun()
function instead.
Before:
err := suite.AddStep("", someFunc) // err contains an error
if err != nil {
t.Fatal(err)
}
after:
suite.AddStep()
suite.Run() // test fails here
It should simplify the end-user code.
AddRegexStep
function added #56