diff options
author | Rubén Dávila <rdavila84@gmail.com> | 2016-02-25 22:08:45 -0500 |
---|---|---|
committer | Rubén Dávila <rdavila84@gmail.com> | 2016-03-02 12:51:29 -0500 |
commit | b41a274b62804d93e1dec57d8886d86602274dac (patch) | |
tree | f051159d3a56be282c05dd25cb03b5ec4ff07b7f /features/groups.feature | |
parent | 0b86b46a2c0eeaa397d2dccb49bf51d096ac12c6 (diff) | |
download | gitlab-ce-b41a274b62804d93e1dec57d8886d86602274dac.tar.gz |
Don't list merge requests from archived projects in Group view.
Diffstat (limited to 'features/groups.feature')
-rw-r--r-- | features/groups.feature | 6 |
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" |