Skip to content

Releases: go-bdd/gobdd

Use both feature and scenario tags in skipScenario

21 Apr 10:14
5daa395
Compare
Choose a tag to compare

v1.1.2: Use fatal in the internal code to stop executing code when not needed…

29 Sep 19:44
565ba3b
Compare
Choose a tag to compare
  • Use fatal in the internal code to stop executing code when not needed #124

v1.1.1: fix issue with not ignoring whole features using tags (#120)

30 Jun 13:50
69e2ab3
Compare
Choose a tag to compare
  • fix issue with not ignoring whole features using tags #120

v1.1.0

07 Jun 03:37
b30291a
Compare
Choose a tag to compare
Add parameter types (#114)

Add parameter types

03 Jun 11:17
b30291a
Compare
Choose a tag to compare

GoBDD now supports parameter types.

You can use one of pre-defined or define your own.

v1.0.1

25 May 08:54
ec38e61
Compare
Choose a tag to compare
  • Fixed bug with not running tests for all examples #101
  • Merge context package into the main package #104

First stable version!

27 Apr 06:26
116acf7
Compare
Choose a tag to compare

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

29 Mar 17:05
Compare
Choose a tag to compare
fix not executed tests

v1.0-alfa

14 Mar 09:23
ed32b3c
Compare
Choose a tag to compare
v1.0-alfa Pre-release
Pre-release
replace errors with logging (#79)

Simplified AddStep function

04 Feb 07:25
f847eef
Compare
Choose a tag to compare
  1. Right now, AddStep doesn't return errors. Errors are logged in Run() 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.

  1. AddRegexStep function added #56