Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. Feature: Random quotes
  2.  
  3. The service should return random quotes along with author and
  4. tag. If requested the service should return random quotes of
  5. a particular autohor or tag.
  6.  
  7. Scenario: Serve random quotes of any author any tag
  8. Given user requests a quote
  9. When he doesn't specify author or tag
  10. Then return random quote
  11.  
  12. Scenario: Serve random quotes of an author any tag
  13. Given user requests a quote
  14. When he specifies an author
  15. Then return random quote of that author
  16.  
  17. Scenario: Serve random quotes of a tag any author
  18. Given user requests a quote
  19. When he specifies a tag
  20. Then return random quote of that tag
  21.  
  22. Scenario: Serve random quotes of a tag and an author
  23. Given user requests a quote
  24. When he specifies a tag and an author
  25. Then return random quote of that tag and that author
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement