-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
James Dunmore
authored and
James Dunmore
committed
Dec 11, 2012
1 parent
b363538
commit fb347c7
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Feature: Player makes a move | ||
As a player | ||
In order play the game | ||
I need to make a move | ||
|
||
Scenario: Player wants to make a valid move | ||
Given I am a Player | ||
And I Want to make a move | ||
And the target box on the grid is free | ||
Then I can make a move | ||
|
||
Scenario: Player wants to make a move where the box is not free | ||
Given I am a Player | ||
And I want to make a move | ||
And the target box on the grid is not free | ||
Then I can't make a move |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Feature: Player makes a move | ||
As a player | ||
In order play the game | ||
I need to make a move | ||
|
||
Scenario: Player wants to make a valid move | ||
Given I am a Player | ||
And I Want to make a move | ||
And the target box on the grid is free | ||
Then I can make a move | ||
|
||
Scenario: Player wants to make a move where the box is not free | ||
Given I am a Player | ||
And I want to make a move | ||
And the box on the grid is not free | ||
Then I can't make a move |