faithfulgeek (owner)

Revisions

gist: 25815 Download_button fork
public
Public Clone URL: git://gist.github.com/25815.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
======================================================= BAD
Scenario: User selects a group on the news widget
  Given there are articles for each group
  When I select a group
  Then the news list should display news for the group I selected
 
======================================================= BAD
Scenario: User selects the BDD group
  Given there are 4 articles in the BDD group
  When I select the BDD group
  Then the news list should display the 4 articles from the BDD group
 
======================================================= GOOD
Scenario: User selects the BDD group
  Given there is an article in the BDD group named Rspec
  And there is an article in the TDD group called NUnit
  When I select the BDD group
  Then the news list should show the article named Rspec
  And the news list should not show the article named NUnit
 
======================================================= GOOD
Scenario: Admin adds news to a particular group
  Given there are 4 articles in the BDD group
  When I add an article to the BDD group named Cucumber
  Then there should be 5 articles in the BDD group
  And there should be an article named Cucumber in the BDD group
Scenario: User selects a group on the news widget
  Given there are articles for each group
  When I select a group
  Then the news list should display news for the group I selected