Advertisement
lgbanuelos

Taxi ride booking: Cucumber user story

Mar 31st, 2020
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. Feature: Taxi booking
  2. As a customer
  3. Such that I go to destination
  4. I want to arrange a taxi ride
  5.  
  6. Scenario: Booking a taxi ride through web page (with confirmation)
  7. Given the following taxis are on duty
  8. | driver_id | location | status |
  9. | juan | Angelópolis | busy |
  10. | pedro | Angelópolis | available |
  11. And I want to go from "Atlixcáyotl 5718" to "Plaza Dorada"
  12. And I open the application's web page
  13. And I enter the booking information
  14. When I summit the booking request
  15. Then I should receive a confirmation message
  16. And "pedro" should receive a ride request
  17. When "pedro" accepts the ride request
  18. Then I should be notified "pedro" accepted the request
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement