Guest User

Untitled

a guest
Apr 8th, 2018
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. Feature: viewing lists
  2. As a guest
  3. I want to view lists
  4. So that I can see the value of boxedup lists and want to sign up
  5.  
  6. Background:
  7. Given a user: "Winnie" exists with name: "Winnie the Pooh", email: "winnie@pooh.com", password: "password", email_confirmed: true
  8. And a list: "public list" exists with name: "Public List", user: user "Winnie", privacy: "public"
  9. And a list: "friends list" exists with name: "Friends List", user: user "Winnie", privacy: "friends"
  10. And a list: "private list" exists with name: "Private List", user: user "Winnie", privacy: "private"
  11.  
  12. Scenario: looking at a users lists
  13. When I go to the user: "Winnie"'s lists page
  14. Then I should be on the user: "Winnie"'s lists page
  15. And I should see "Public List"
  16. And I should not see "Friends List"
  17. And I should not see "Private List"
Add Comment
Please, Sign In to add comment