From 385444d0e00f63e8966f059dd045eb9a19ecb31f Mon Sep 17 00:00:00 2001 From: gedi Date: Thu, 31 Aug 2017 16:52:21 +0300 Subject: [PATCH] closes #72 --- README.md | 3 +++ examples/api/version.feature | 2 +- godog.go | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0ab8c62..dece164 100644 --- a/README.md +++ b/README.md @@ -207,6 +207,9 @@ composed. - [how to use godog by semaphoreci](https://semaphoreci.com/community/tutorials/how-to-use-godog-for-behavior-driven-development-in-go) - see [examples](https://github.com/DATA-DOG/godog/tree/master/examples) +- see extension [AssistDog](https://github.com/hellomd/assistdog), which + may have useful **gherkin.DataTable** transformations or comparison + methods for assertions. ### Documentation diff --git a/examples/api/version.feature b/examples/api/version.feature index 244028c..0018464 100644 --- a/examples/api/version.feature +++ b/examples/api/version.feature @@ -20,6 +20,6 @@ Feature: get version And the response should match json: """ { - "version": "v0.7.4" + "version": "v0.7.5" } """ diff --git a/godog.go b/godog.go index 5a93d9c..007daca 100644 --- a/godog.go +++ b/godog.go @@ -39,4 +39,4 @@ Godog was inspired by Behat and Cucumber the above description is taken from it' package godog // Version of package - based on Semantic Versioning 2.0.0 http://semver.org/ -const Version = "v0.7.4" +const Version = "v0.7.5"