29 lines
880 B
Gherkin
29 lines
880 B
Gherkin
Feature: User Account
|
|
Functions that the user can perform from the account screen
|
|
|
|
|
|
Scenario: Enable Tutorial
|
|
Given I am logged in
|
|
And I am on the account screen
|
|
When I set the Tutorials option to {true}
|
|
Then the tutorials should be enabled
|
|
|
|
Scenario: Disable Tutorial
|
|
Given I am logged in
|
|
And I am on the account screen
|
|
When I set the Tutorials option to {false}
|
|
Then the tutorials should be deactivated
|
|
|
|
Scenario: User should be able to enter my normal work week
|
|
Given I am logged in
|
|
And I am on the Work Week Menu in the account screen
|
|
When I add a new entry to the work week
|
|
Then I should see the date on the calendar
|
|
|
|
Scenario: User should be able to enter holiday
|
|
Given I am logged in
|
|
And I am on the Holiday menu in the account screen
|
|
When I add a new entry to the holiday tracker
|
|
Then it should display in the holiday list
|
|
|