summaryrefslogtreecommitdiff
path: root/features/project/wall.feature
blob: c92dbf82db56f4233c7f3ad847e139aebb57712f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@javascript
Feature: Project Wall
  In order to use Project Wall
  A user
  Should be able to read & write messages

  Background:
    Given I signin as a user
    And I own project "Shop"
    And I visit project "Shop" wall page

  @javascript
  Scenario: Write comment
    Given I write new comment "my special test message"
    Then I should see project wall note "my special test message"

    Then I visit project "Shop" wall page
    And I should see project wall note "my special test message"