Этот коммит содержится в:
Jayson Smith 2020-04-14 23:58:05 -07:00 коммит произвёл GitHub
родитель 68d94c03b8
коммит 64ede2d482
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

Просмотреть файл

@ -42,15 +42,15 @@ The following about section was taken from
Due to dependency changes in a coming merge to master, including breaking changes, you should update how you install or depend on godog so that you have a version specified. Due to dependency changes in a coming merge to master, including breaking changes, you should update how you install or depend on godog so that you have a version specified.
### Install ## Install
``` ```
go get github.com/cucumber/godog/cmd/godog@v0.8.1 go get github.com/cucumber/godog/cmd/godog@v0.9.0
``` ```
Adding `@v0.8.1` will install v0.8.1 specifically instead of master. Adding `@v0.9.0` will install v0.9.0 specifically instead of master.
Running `within the $GOPATH`, you would also need to set `GO111MODULE=on`, like this: Running `within the $GOPATH`, you would also need to set `GO111MODULE=on`, like this:
``` ```
GO111MODULE=on go get github.com/cucumber/godog/cmd/godog@v0.8.1 GO111MODULE=on go get github.com/cucumber/godog/cmd/godog@v0.9.0
``` ```
## About ## About
@ -75,17 +75,6 @@ business goal in mind at all times.
When automated testing is this much fun, teams can easily protect When automated testing is this much fun, teams can easily protect
themselves from costly regressions. themselves from costly regressions.
## Install
```
go get github.com/cucumber/godog/cmd/godog@v0.9.0
```
Adding `@v0.9.0` will install v0.9.0 specifically instead of master.
Running `within the $GOPATH`, you would also need to set `GO111MODULE=on`, like this:
```
GO111MODULE=on go get github.com/cucumber/godog/cmd/godog@v0.9.0
```
## Example ## Example
The following example can be [found The following example can be [found