diaspora/features/desktop/public_stream.feature

17 lines
580 B
Gherkin
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@javascript
Feature: The public stream
Background:
Given following users exist:
| username | email |
| Alice Smith | alice@alice.alice |
| Bob Jones | bob@bob.bob |
And "bob@bob.bob" has a public post with text "Bobs public post"
Scenario: seeing public posts
When I sign in as "alice@alice.alice"
And I am on the public stream page
Then I should see "Bobs public post"
Scenario: seeing public posts as a logged out user
When I am on the public stream page
Then I should see "Bobs public post"