2012-06-15 06:15:28 +02:00
|
|
|
Feature: Project Wall
|
|
|
|
In order to use Project Wall
|
2012-09-10 17:35:03 +02:00
|
|
|
A user should be able to read and write messages
|
2012-06-15 06:15:28 +02:00
|
|
|
|
|
|
|
Background:
|
2012-09-10 17:35:03 +02:00
|
|
|
Given I sign in as a user
|
2012-06-15 06:15:28 +02:00
|
|
|
And I own project "Shop"
|
2012-09-10 15:35:23 +02:00
|
|
|
And I visit project "Shop" wall page
|
2012-06-15 06:15:28 +02:00
|
|
|
|
2012-09-10 15:35:23 +02:00
|
|
|
@javascript
|
2012-06-15 06:15:28 +02:00
|
|
|
Scenario: Write comment
|
|
|
|
Given I write new comment "my special test message"
|
|
|
|
Then I should see project wall note "my special test message"
|
|
|
|
|
2012-09-10 15:35:23 +02:00
|
|
|
Then I visit project "Shop" wall page
|
2012-06-15 06:15:28 +02:00
|
|
|
And I should see project wall note "my special test message"
|