Initial Commit from Base app
[base_ror3_portal.git] / features / devise.feature
blob95521671650c451d8b07b2af2881aaeb9a3808fa
1 Feature: Test Authentication Functionality
2   In Order to see if I can log in to my App, I need to register an Account
4         Scenario: Creating a new account
5                 Given I am not authenticated
6                 When I go to devise_register
7                 And I fill in "user_email" with "someone@example.com"
8                 And I fill in "user_password" with "Password123"
9                 And I fill in "user_password_confirmation" with "Password123"
10                 And I press "Sign up"
11                 Then I should see "You have signed up successfully"
13 #Scenario: Willing to edit my account
14 #    Given I am a new, authenticated user # beyond this step, your work!
15 #    When I want to edit my account
16 #    Then I should see the account initialization form
17 #    And I should see "Your account has not been initialized yet. Do it now!"