Created
March 10, 2015 12:26
-
-
Save leoallen85/c50beee8bab77b05fb67 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
| Monopoly Game | |
| ______________ | |
| As a | |
| I want to | |
| So I can | |
| MVP | |
| Feature: | |
| As a player | |
| I want to be able to play against another player | |
| So I can have an element of competition | |
| Scenario | |
| Given I am a player | |
| When I join the game | |
| Then I should see another player | |
| Feature: | |
| As a player | |
| I want to have a board | |
| So I can play the game | |
| Scenario | |
| Given I am a player | |
| When I join the game | |
| Then I should see a board | |
| Feature: | |
| As a player | |
| I want to use a dice | |
| So I can move around the board | |
| Given I am a player | |
| When I roll the dice | |
| I should move around the board | |
| As a player | |
| I want a counter | |
| So I can be represented on the board | |
| As a player | |
| I want to move around the board | |
| So I can play the game | |
| As a player | |
| I want to be able to buy properties | |
| So I can charge rent | |
| As a player | |
| I want to have money | |
| So I can play the game | |
| As a competitor | |
| I want players to go bankrupt | |
| So I can beat my friends and win |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment