Created
October 7, 2009 15:49
-
-
Save strass/204151 to your computer and use it in GitHub Desktop.
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
Roles Release 0.1 | |
Basic forum posting ability (including validation) | |
User Reads Games | |
Topics | |
Posts | |
Users creates Game | |
Topic | |
Post | |
User edits Game | |
Topic | |
Post | |
User deletes Game | |
Topic | |
Post | |
Feature: user reads games | |
As a user, | |
I want to read a list of games, | |
So that I can see the games that exist | |
Scenario: load index | |
Given there are games, | |
When I see the index, | |
Then i should see a list of games | |
Feature: user reads topics | |
As a user, | |
When I load a game | |
I want to read a list of topics, | |
So that I can see the topics that exist | |
Scenario: load game | |
When I select a game, | |
Given there are topics for that game, | |
Then i should see a list of topics | |
Feature: user reads posts | |
As a user, | |
When I load a topic | |
I want to read a list of posts, | |
So that I can see the posts that exist | |
Scenario: load game | |
When I select a topic, | |
Given there are posts for that topic, | |
Then i should see a list of posts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment