Co-authored-by: Gabriel Radureau <arcodange@gmail.com> Co-committed-by: Gabriel Radureau <arcodange@gmail.com>
17 lines
369 B
Go
17 lines
369 B
Go
package info
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"dance-lessons-coach/pkg/bdd/testsetup"
|
|
)
|
|
|
|
func TestInfoBDD(t *testing.T) {
|
|
config := testsetup.NewFeatureConfig("info", "progress", false)
|
|
suite := testsetup.CreateTestSuite(t, config, "dance-lessons-coach BDD Tests - Info Feature")
|
|
|
|
if suite.Run() != 0 {
|
|
t.Fatal("non-zero status returned, failed to run info BDD tests")
|
|
}
|
|
}
|