Created
February 7, 2017 13:22
-
-
Save icambridge/343a6b1ed12756146b04759c3f859b8f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Scenario: Wanted - Knownledge of dependencies dependencies. | |
Given I depend on "github.com/src-d/go-git" version 4.3 | |
And "github.com/src-d/go-git" version 4.3 depends on "github.com/src-d/go-billy" version 1.0 | |
When I install dependencies | |
Then I will have "github.com/src-d/go-billy" version 1.0 | |
And I will have "github.com/src-d/go-git" version 4.3 | |
Scenario: Actual - Knownledge of dependencies dependencies. | |
Given I depend on "github.com/src-d/go-git" version 4.3 | |
And "github.com/src-d/go-git" version 4.3 depends on "github.com/src-d/go-billy" version 1.0 | |
When I install dependencies | |
Then I will have the latest "github.com/src-d/go-billy" | |
And I will have "github.com/src-d/go-git" version 4.3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment