Guest User

Untitled

a guest
Nov 18th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. Feature: Skeleton CRUD API
  2. In order for the frontend application to manipulate skeletons
  3. The CRUD API that manipulates skeletons must be implemented and operational
  4.  
  5. Background:
  6. Given that at least one skeleton exists
  7.  
  8. Scenario: Creating a new skeleton
  9. Given that I want to create a new skeleton
  10. When I call the action that will create a new skeleton
  11. Then I should get back a JSON response
  12. And It must have the attribute success set to true
  13.  
  14. Scenario: Deleting an existing skeleton
  15. Given that i want to delete an existing skeleton
  16. And that i fetch an existing skeleton from the database
  17. When I call the action that will delete that skeleton
  18. Then The Skeleton must no longer exist in the database
  19. And I should get back a JSON response
  20. And It must have the attribute success set to true
Add Comment
Please, Sign In to add comment