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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Denisov <1101.debian@gmail.com>2012-09-10 01:27:47 +0400
committerAlex Denisov <1101.debian@gmail.com>2012-09-10 01:27:47 +0400
commit1f240b09ed5f9f5476a863dd2f906398e5a9f0d4 (patch)
tree043a9a48f08507b96064cef157ff733ca89ce2b4 /features/dashboard
parenta86bd87afcb8ba8221aa72562a6591139fa763c0 (diff)
User left project event added
Diffstat (limited to 'features/dashboard')
-rw-r--r--features/dashboard/dashboard.feature9
1 files changed, 7 insertions, 2 deletions
diff --git a/features/dashboard/dashboard.feature b/features/dashboard/dashboard.feature
index 8775e08154d..98bb49803f3 100644
--- a/features/dashboard/dashboard.feature
+++ b/features/dashboard/dashboard.feature
@@ -15,9 +15,14 @@ Feature: Dashboard
And I click "Create Merge Request" link
Then I see prefilled new Merge Request page
- @current
Scenario: I should see User joined Project event
Given user with name "John Doe" joined project "Shop"
When I visit dashboard page
- Then I should see "John Doe joined Shop" event
+ Then I should see "John Doe joined project Shop" event
+
+ Scenario: I should see User left Project event
+ Given user with name "John Doe" joined project "Shop"
+ And user with name "John Doe" left project "Shop"
+ When I visit dashboard page
+ Then I should see "John Doe left project Shop" event