jackdempsey (owner)

Revisions

gist: 150497 Download_button fork
public
Public Clone URL: git://gist.github.com/150497.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
31
32
33
34
  Scenario: Viewing a contact to edit
    Given I am on my Address Book page
    And I am viewing a contact with email address "foo@foo.com"
    Then I should see "edit contact foo"
 
  Scenario: Editing a contact
    Given I've done the above thing
    When i click on "edit contact foo"
    Then I should see foo's information
 
  Scenario: Submitting a contacts update
    Given I've done the above
    When I submit the contacts information
    Then i should see 'contact updated successfully'
 
more correct effort below?
 
  Scenario: Viewing a contact to edit
    Given I am on my Address Book page
    And I am viewing a contact with email address "foo@foo.com"
    Then I should see "edit contact foo"
 
  Scenario: Editing a contact
    Given I'm viewing a contact to edit
    When i click on "edit contact foo"
    Then I should see foo's information
 
  Scenario: Submitting a contacts update
    Given I'm editing a contact
    When I submit the contacts information
    Then i should see 'contact updated successfully'