Created
November 8, 2016 16:26
-
-
Save BaylorRae/61e9b3de75336c8cb4ca7b3a3df267a7 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
Feature: offer price | |
Scenario: accept offer price | |
Given I offer a price of "5.75" | |
When the price is accepted | |
Then I should be able to send payment |
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
Feature: offer price | |
Scenario: accept offer price | |
Given buyer offers a price of "5.75" | |
And buyer2 offers a price of "6.00" | |
When seller accepts the "6.00" price | |
Then buyer should not be able to send payment | |
And buyer2 should be able to send payment |
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
Feature: offer price | |
Scenario: accept offer price | |
Given buyer offers a price of "5.75" | |
When seller accepts the price | |
Then buyer should be able to send payment |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment