mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
20 lines
813 B
Gherkin
20 lines
813 B
Gherkin
|
Feature: Log out
|
||
|
As a CMS user
|
||
|
I want to be able to log and be locked out of the CMS
|
||
|
So that I can know other people can't edit my site
|
||
|
|
||
|
Scenario: Log out from CMS
|
||
|
Given I log into the CMS as admin
|
||
|
And I click the "log out" link
|
||
|
When I visit admin/
|
||
|
Then I see "Enter your username and password to access the CMS."
|
||
|
When I visit admin/assets/
|
||
|
Then I see "Enter your username and password to access the CMS."
|
||
|
When I visit admin/comments/
|
||
|
Then I see "Enter your username and password to access the CMS."
|
||
|
When I visit admin/reports/
|
||
|
Then I see "Enter your username and password to access the CMS."
|
||
|
When I visit admin/security/
|
||
|
Then I see "Enter your username and password to access the CMS."
|
||
|
When I visit admin/subsites/
|
||
|
Then I see "Enter your username and password to access the CMS."
|