To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorCart
- Scenarios
-
- Initial state
-
The visitor does not have a cart until an item is added
- When
- I visit the store
- Then
- my cart should be empty
- Add item to cart
-
- Given
-
the products:
CoffeeScript Programming Ruby 1.9 - When
- I visit the store
- And
- I add "Programming Ruby 1.9" to my cart
- Then
-
my cart should contain:
product quantity Programming Ruby 1.9 1
- Add item to cart again
-
Multiple copies of an item can be added. They should appear in a single cart row.
- Given
-
the products:
CoffeeScript Programming Ruby 1.9 - When
- I visit the store
- And
- I add "Programming Ruby 1.9" to my cart
- And
- I add "Programming Ruby 1.9" to my cart again
- Then
-
my cart should contain:
product quantity Programming Ruby 1.9 2
- Add different items to cart
-
Items should appear in the order they were added
- Given
-
the products:
CoffeeScript Programming Ruby 1.9 - When
- I visit the store
- And
- I add "Programming Ruby 1.9" to my cart
- And
- I add "CoffeeScript" to my cart
- Then
-
my cart should contain:
product quantity Programming Ruby 1.9 1 CoffeeScript 1
- Empty cart
-
- Given
- my cart contains products
- When
- I empty my cart
- Then
- my cart should be empty
Last published over 5 years ago by andy8.