summaryrefslogtreecommitdiff
path: root/features/projects
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2012-08-03 19:39:54 +0300
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2012-08-03 19:39:54 +0300
commitb846ac10597d832bd4b03ee65a026fcf4f9480f2 (patch)
treebcbfc91a834a2ef839e6473570e1e21852a32fe9 /features/projects
parent6de488259701af4b69282ad105882dba423fb666 (diff)
downloadgitlab-ce-b846ac10597d832bd4b03ee65a026fcf4f9480f2.tar.gz
Milestones cucumber. Renamed app security test
Diffstat (limited to 'features/projects')
-rw-r--r--features/projects/issues/milestones.feature18
1 files changed, 18 insertions, 0 deletions
diff --git a/features/projects/issues/milestones.feature b/features/projects/issues/milestones.feature
index e69de29bb2d..d78096a4f16 100644
--- a/features/projects/issues/milestones.feature
+++ b/features/projects/issues/milestones.feature
@@ -0,0 +1,18 @@
+Feature: Milestones
+ Background:
+ Given I signin as a user
+ And I own project "Shop"
+ And project "Shop" has milestone "v2.2"
+ Given I visit project "Shop" milestones page
+
+ Scenario: I should see active milestones
+ Then I should see milestone "v2.2"
+
+ Scenario: I should see milestone
+ Given I click link "v2.2"
+ Then I should see milestone "v2.2"
+
+ Scenario: I create new milestone
+ Given I click link "New Milestone"
+ And I submit new milestone "v2.3"
+ Then I should see milestone "v2.3"