12345678910111213141516171819202122232425262728293031323334353637 |
- Feature: Manage Articles
- In order to make a blog
- As an author
- I want to create and manage blog psots
-
- Background:
- Given the following blog_post list
- | title | content | published | description | slug |
- | Hello World | Welcome to the website | true | First Post | hello_world |
- | Test 001 | 1 2 3 testing | true | Testing the website | test_001 |
-
- Scenario: Blog Posts List
- When I go to the blog page
- Then I should see "Hello World"
- And I should see "First Post"
- And I should see "Test 001"
- And I should see "Testing the website"
-
- Scenario: Posts Page
- When I go to the blog page
- And I click in the link "Hello World"
- Then I should see "Hello World"
- And I should see "Welcome to the website"
- Scenario: Post Article
- Given I am logged in as admin
- Then I click in the link "Admin Panel"
- And I click in the link "Posts"
- And I click in the link "New Post"
- Then I fill in "Title" with "Test 002"
- And I fill in "Slug" with "test_002"
- And I fill in "Description" with "Another blog post test"
- And I fill in "post_content" with "This is blog post test number 002!"
- And I click in the button "Save"
- Then I should see "Test 002"
- And I should see "This is blog post test number 002!"
|