-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #3183878: Fix Cucumber composer and .info.yml to work with Drup…
…al 9 ( ^9.0 ) only
- Loading branch information
Showing
2 changed files
with
14 additions
and
15 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
Feature: Aonymous user | ||
Feature: Anonymous user | ||
|
||
@javascript @local @development @staging @production | ||
Scenario: Check that anonymous users cannot register. | ||
Given I am an anonymous user | ||
When I go to "user/register" | ||
When I go to "/user/register" | ||
Then I should see "You are not authorized to access this page." | ||
|
||
@javascript @local @development @staging @production | ||
Scenario: Check that anonymous users cannot access admin pages. | ||
Given I am an anonymous user | ||
When I go to "admin" | ||
When I go to "/admin" | ||
Then I should see "You are not authorized to access this page." | ||
|