14 lines
508 B
Gherkin
14 lines
508 B
Gherkin
@api
|
|
Feature: Ensure content types are available
|
|
|
|
Scenario: Make sure the Fighter content type is set up correctly.
|
|
Given I am logged in as a user with the "administrator" role
|
|
And I am on "/node/add/fighter"
|
|
Then I should see the link "My account" in the "header" region
|
|
And I should see the link "Log out" in the "header" region
|
|
|
|
Scenario: Make sure that anonymous users see the account menu
|
|
Given I am not logged in
|
|
And I am on "/"
|
|
Then I should see the link "Log in" in the "header" region
|