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

admin_panel.feature 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. @admin_panel
  2. Feature: Admin Panel
  3. In order to administer a website
  4. As the owner/admin of the system
  5. I want to config the website thru an admin panel
  6. Background:
  7. Given the website is configured
  8. And the following list of blog posts
  9. | title | content | published | description | slug |
  10. | Hello World | Welcome to the website | true | First Post | hello_world |
  11. | Test 001 | 1 2 3 testing | true | Testing the website | test_001 |
  12. Scenario: Admin navigates to Dashboard
  13. Given I am logged in as admin
  14. When I click in the link "Admin Panel"
  15. Then I should see "Dashboard"
  16. And I should see "2 Posts"
  17. And I should see "2 Users"
  18. And I should see "0 Files"
  19. And I should see "0/0 Messages"
  20. Scenario: Registered user trying to access the Admin Panel
  21. Given I am logged in as user
  22. When I go to the admin dashboard
  23. Then I should see "You dont have permission to access that page!"
  24. Scenario: Unregistered user trying to access the Admin Panel
  25. Given I am not logged in
  26. When I go to the admin dashboard
  27. Then I should see "You dont have permission to access that page!"
  28. Scenario: Admin navigates to configurations page
  29. Given I am logged in as admin
  30. When I click in the link "Admin Panel"
  31. And I click in the link "Configurations"
  32. Then I should see in the field "Tagline" the text "A Ruby on Rails app template"
  33. Scenario: Registered user trying to access the configurations page
  34. Given I am logged in as user
  35. When I go to the configurations page
  36. Then I should see "You dont have permission to access that page!"
  37. Scenario: Unregistered user trying to access the configurations page
  38. Given I am not logged in
  39. When I go to the configurations page
  40. Then I should see "You dont have permission to access that page!"
  41. Scenario: Change the website name and Tagline
  42. Given I am logged in as admin
  43. And I should see "Rails Website Template"
  44. When I go to the configurations page
  45. Then I fill in "info_website_name" with "Testing Website Name"
  46. And I fill in "info_tagline" with "Just another cucumber test"
  47. And I click in the button "Update Config"
  48. Then I should see "Testing Website Name"
  49. And I should see in the field "info_website_name" the text "Testing Website Name"
  50. And I should see in the field "Tagline" the text "Just another cucumber test"