Created
August 15, 2009 12:23
-
-
Save leehambley/168339 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Feature: Registration | |
In order to track contributions | |
As a Site Owner | |
I want Users to be able to register | |
Scenario: Register With Valid Form Data | |
Given I am on the registration page | |
Then I should see a new user form | |
When I fill in the form correctly | |
And press the Register button | |
Then I should see a confirmation | |
And there should be one User | |
Scenario: Register With Invalid Form Data | |
Given I am on the registration page | |
Then I should see a new user form | |
When I fill in the form incorrectly | |
And press the Register button | |
Then I should see an error | |
And there should be 0 Users |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment