mirror of
https://github.com/diaspora/diaspora.git
synced 2026-01-09 15:18:11 -05:00
18 lines
580 B
Gherkin
18 lines
580 B
Gherkin
@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 "Bob’s 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 "Bob’s public post"
|
||
|
||
Scenario: seeing public posts as a logged out user
|
||
When I am on the public stream page
|
||
Then I should see "Bob’s public post"
|