Advertisement
saasbook

imperative_bad_scenario.feature

Jan 10th, 2012
496
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. Feature: movies should appear in alphabetical order, not added order
  2.  
  3. Scenario: view movie list after adding 2 movies (imperative and non-DRY)
  4.  
  5. Given I am on the RottenPotatoes home page
  6. When I follow "Add new movie"
  7. Then I should be on the Create New Movie page
  8. When I fill in "Title" with "Zorro"
  9. And I select "PG" from "Rating"
  10. And I press "Save Changes"
  11. Then I should be on the RottenPotatoes home page
  12. When I follow "Add new movie"
  13. Then I should be on the Create New Movie page
  14. When I fill in "Title" with "Apocalypse Now"
  15. And I select "R" from "Rating"
  16. And I press "Save Changes"
  17. Then I should be on the RottenPotatoes home page
  18. And I should see "Apocalypse Now" before "Zorro"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement