Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update paths to screenshots for examples #270

Merged
merged 1 commit into from
Mar 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _examples/api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Now we have described a success case and an error when the request method is not
Run **godog version.feature**. You should see the following result, which says that all of our
steps are yet undefined and provide us with the snippets to implement them.

![Screenshot](https://raw.github.com/cucumber/godog/master/examples/api/screenshots/undefined.png)
![Screenshot](https://raw.github.com/cucumber/godog/master/_examples/api/screenshots/undefined.png)

### Step 3

Expand Down Expand Up @@ -253,7 +253,7 @@ used to respond with the correct constant version number.

Run our tests to see whether everything is happening as we have expected: `godog version.feature`

![Screenshot](https://raw.github.com/cucumber/godog/master/examples/api/screenshots/passed.png)
![Screenshot](https://raw.github.com/cucumber/godog/master/_examples/api/screenshots/passed.png)

### Conclusions

Expand Down
2 changes: 1 addition & 1 deletion _examples/db/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# An example of API with DB

The following example demonstrates steps how we describe and test our API with DB using **godog**.
To start with, see [API example](https://github.com/cucumber/godog/tree/master/examples/api) before.
To start with, see [API example](https://github.com/cucumber/godog/tree/master/_examples/api) before.
We have extended it to be used with database.

The interesting point is, that we have [go-txdb](https://github.com/DATA-DOG/go-txdb) library,
Expand Down