Created
August 15, 2009 12:31
-
-
Save leehambley/168341 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 | |
Background: | |
Given I am on the registration oage | |
Then I should see a new user form | |
When I fill in the form correctly | |
Scenario: Register With Valid Form Data | |
And press the Register button | |
Then I should see a confirmation | |
And there should be one User | |
Scenario: Register With Invalid Form Data | |
When I fill in username with "" | |
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