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:
authorRubén Dávila <rdavila84@gmail.com>2016-02-26 06:08:45 +0300
committerRubén Dávila <rdavila84@gmail.com>2016-03-02 20:51:29 +0300
commitb41a274b62804d93e1dec57d8886d86602274dac (patch)
treef051159d3a56be282c05dd25cb03b5ec4ff07b7f /features/groups.feature
parent0b86b46a2c0eeaa397d2dccb49bf51d096ac12c6 (diff)
Don't list merge requests from archived projects in Group view.
Diffstat (limited to 'features/groups.feature')
-rw-r--r--features/groups.feature6
1 files changed, 6 insertions, 0 deletions
diff --git a/features/groups.feature b/features/groups.feature
index 4f9c28f813c..a60c3860b83 100644
--- a/features/groups.feature
+++ b/features/groups.feature
@@ -33,6 +33,12 @@ Feature: Groups
When I visit group "Owned" merge requests page
Then I should see merge requests from group "Owned" assigned to me
+ Scenario: I should not see merge requests from archived project in "Owned" group merge requests list
+ Given Group "Owned" has archived project
+ And the archived project have some merge_requests
+ When I visit group "Owned" merge requests page
+ Then I should not see merge requests from the archived project
+
Scenario: I should see edit group "Owned" page
When I visit group "Owned" settings page
And I change group "Owned" name to "new-name"