diff options
author | Rubén Dávila <rdavila84@gmail.com> | 2016-02-24 15:37:40 -0500 |
---|---|---|
committer | Rubén Dávila <rdavila84@gmail.com> | 2016-03-04 22:37:03 -0500 |
commit | baa782ac9a29ba8fe162287511cbc9e4810fc4ee (patch) | |
tree | 17bccc6ba8771b9f43427e9f75b1a3b174376d9f /features/group | |
parent | 3f2d82485ed84247d88cde6423c9df517c8962b5 (diff) | |
download | gitlab-ce-baa782ac9a29ba8fe162287511cbc9e4810fc4ee.tar.gz |
Add some spinach specs.
Diffstat (limited to 'features/group')
-rw-r--r-- | features/group/milestones.feature | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/features/group/milestones.feature b/features/group/milestones.feature index 62ea66a783c..a097e07583a 100644 --- a/features/group/milestones.feature +++ b/features/group/milestones.feature @@ -28,3 +28,21 @@ Feature: Group Milestones And I fill milestone name When I press create mileston button Then milestone in each project should be created + + Scenario: I should see Issues listed with labels + Given Group has projects with milestones + When I visit group "Owned" page + And I click on group milestones + And I click on one group milestone + Then I should see the "bug" label + And I should see the "feature" label + And I should see the project name in the Issue row + + Scenario: I should see the Labels tab + Given Group has projects with milestones + When I visit group "Owned" page + And I click on group milestones + And I click on one group milestone + And I click on the "Labels" tab + Then I should see the list of labels + And I should see the project name in the Label row |