Guest User

Untitled

a guest
Jul 19th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. Feature: Cart management
  2. In order to reserve spaces and order products
  3. Registered users should be able to
  4. Add spaces and products to their cart
  5.  
  6. Background:
  7. Given an existing normal user "user2" with password "password2"
  8. And an existing non-reserved space "A13"
  9. And an existing non-reserved space "A14"
  10. And a current Var entry
  11. And a multispace discount Product
  12. When I go to the login page
  13. And I sign in as "user2" with password "password2"
  14. And I search for the space "A13 A14"
  15. And I press "A13"
  16. And I press "A14"
  17.  
  18. Scenario: Add two spaces to the cart
  19. Then I should see "DescriptionQtyPriceSubtotal A13"
  20. And I should see "A14"
  21. And I should see "Multiple Reservation Discount"
  22. And I should see "Total:$95.00"
  23.  
  24. Scenario: Remove one space from a cart with two spaces in it
  25. And I press "X"
  26. And I press "Yes"
  27. Then I should see "DescriptionQtyPriceSubtotal A14"
  28. And I should see "Total:$50.00"
Add Comment
Please, Sign In to add comment