Welcome to mirror list, hosted at ThFree Co, Russian Federation.

public_stream.feature « desktop « features - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e53e107033771c2f664d468fcc2d0eb198b7d8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@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"