/features/sort_cars_list.feature
https://bitbucket.org/Doaa_karamallah/2d · Gherkin Specification · 42 lines · 31 code · 10 blank · 1 comment · 0 complexity · ebdbc33b1eefa3128b4f15fce041ab2b MD5 · raw file
- Feature: Display list of cars sorted by different criteria
-
- As a car buyer
- So that I can quickly browse cars based on my preferences
- I want to see purchasable sorted by price or year
- Background: cars have been added to database
- Given the following carmodels exist:
- | name |customer_id|
- | BMW |1|
- | DAEWOO |1|
-
- Given the following makes exist:
- |name |carmodel_id |customer_id|
- |Astra | 1 | 1|
- | corsa | 1 | 1 |
- |corolla | 2 | 1|
- | librite | 2 | 1|
- |nubira | 2 | 1|
-
- Given the following cars exist:
- | carmodel_id | make_id |color|prushdate | price |transmaision| nationality|ecapacity |speed |gass| info |customer_id |isused|
- | 1 | 1 | black | 19-Oct-2004|$123.40 | manual|german |2000|180|95|you will so mush if you dont get it :)|1|1|
- | 1 | 2 | black | 10-Dec-1994|$123.40 | automatic|german |2000|180|92|you will so mush if you dont get it :)|1|0|
- | 2 | 3 | black | 6-Oct-1984|$123.40 | manual|german |1800|200|90|you will so mush if you dont get it :)|1|1|
- | 2 | 5 | black | 26-Nov-1984|$123.40 | automatic|german |1600|180|90|you will so mush if you dont get it :)|1|0|
- # | 1 | 1 | black | 10-Dec-1994|$123.40 | automatic|german |1600|180|92|you will so mush if you dont get it :)|1|0|
-
-
- And I am on the cars page
-
- Scenario: sort cars by price
- Given I am on the cars page
- And I sort by price
- Then I should see " $123.40 " before " $123.40 "
- Scenario: sort cars by Prush date
- Given I am on the cars page
- And I sort by prushdate
- Then I should see "1984-10-6" before "1984-11-26"