johnreilly (owner)

Revisions

gist: 29081 Download_button fork
public
Public Clone URL: git://gist.github.com/29081.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
Feature: Manage people
  In order to keep track of the people involved with the station
  A station manager
  Should be able to manage several people
  
  Scenario: Register new people
    Given I am on the new person page
    When I fill in "First Name" with "John"
    And I fill in "Last Name" with "Reilly"
    And I press "Create"
    Then I should see "John"
    And I should see "Reilly"
    And I should see "successfully created"
 
  Scenario: Delete people
    Given there are 4 people
    When I delete the first person
    Then there should be 3 people on the people page
    And I should see "deleted"