-
-
Save beef/167769 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Scenario: Create an Article | |
Given I am on the new article page | |
When I fill in the article details | |
And I press "Save" | |
Then I should be on articles admin page | |
And I should see 'Article successfully created' | |
Scenario: Update a article | |
Given there are saved articles | |
And I am on the articles admin page | |
When I follow an articles 'edit' link | |
And I amend articles details | |
And I press "Save" | |
Then I should articles admin page | |
And I should see 'Article successfully updated' |
This file contains hidden or 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
Scenario: Publish a article | |
Given I am creating a article | |
When I press "Publish" | |
Then the article should be published | |
Scenario: Publish a article | |
Given I am updating a article | |
When I press "Publish" | |
Then the article should be published |
This file contains hidden or 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
Scenario: Publish a article | |
Given I am updating or creating a article | |
When I press "Publish" | |
Then the article should be published |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment