A website template with lots of features, built with ruby on rails.

blog.feature 811B

123456789101112131415161718192021222324
  1. Feature: Manage Articles
  2. In order to make a blog
  3. As an author
  4. I want to create and manage blog psots
  5. Background:
  6. Given the following blog_post list
  7. | title | content | published | description | slug |
  8. | Hello World | Welcome to the website | true | First Post | hello_world |
  9. | Test 001 | 1 2 3 testing | true | Testing the website | test_001 |
  10. @focus
  11. Scenario: Blog Posts List
  12. When I go to the blog page
  13. Then I should see "Hello World"
  14. And I should see "First Post"
  15. And I should see "Test 001"
  16. And I should see "Testing the website"
  17. Scenario: Posts Page
  18. When I go to the blog page
  19. And I click in the link "Hello World"
  20. Then I should see "Hello World"
  21. And I should see "Welcome to the website"