notebook/features/accounts.feature
2016-10-01 17:48:27 -05:00

17 lines
354 B
Gherkin

Feature: User accounts
Scenario: I sign up
When I sign up
Then I should see my dashboard
Scenario: I log in as an existing user
Given I have an account
When I log in
Then I should see my dashboard
Scenario: I log out, and then log in
When I sign up
Then I log out
Then I log in
Then I should see my dashboard