Guest User

Untitled

a guest
Jul 22nd, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. Feature: Manage clients
  2.  
  3. So that I can manage my company's clients and their work
  4. As a user of a company
  5. I want to be able to manage my clients
  6.  
  7. @client @create
  8. Scenario: Creating a client adds them to a user's company
  9. Given a user "joe" has registered with "joe.smith@example.com", "test01"
  10. And I login with "joe.smith@example.com", "test01"
  11. And I am on the list of clients
  12. When I follow "Add New Client"
  13. When I fill in "Name" with "My Fav Client"
  14. And I press "Create"
  15. Then a client should exist with name: "My Fav Client"
  16. And that client should be in that company's clients
Add Comment
Please, Sign In to add comment