Created
April 4, 2010 05:51
-
-
Save vijendra/355150 to your computer and use it in GitHub Desktop.
cucumber feature for testing account activation
This file contains 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
Scenario: Want to confirm account using mail activation link in the activation email | |
Given I have registered successfully | |
Then I should receive an activation email | |
When I click the account activation link in email | |
Then I should see "Your account is successfully activated." | |
And I should receive wecome email | |
#registration_steps.rb | |
When /^I click the account activation link in email$/ do | |
When 'I click the first link in the email' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment