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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-07-21 23:52:01 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-07-21 23:52:01 +0400
commitaf2a6ec1507e4145f14b0cbaccc7f75447c168cc (patch)
tree3255bc5d866a440589d2fc9cef9ac88017b40c25 /features/steps/project/project.rb
parent2a4c73c0a204575d9e3e2d275fa46b65722733a5 (diff)
Add useless test. Uncomment when we improve testing
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'features/steps/project/project.rb')
-rw-r--r--features/steps/project/project.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/features/steps/project/project.rb b/features/steps/project/project.rb
index 7c0b2509416..b6968152aaf 100644
--- a/features/steps/project/project.rb
+++ b/features/steps/project/project.rb
@@ -36,4 +36,15 @@ class ProjectFeature < Spinach::FeatureSteps
page.should have_content "Version: 2.2.0"
end
end
+
+ step 'change project default branch' do
+ select 'stable', from: 'project_default_branch'
+ end
+
+ step 'I should see project default branch changed' do
+ # TODO: Uncomment this when we can do real gitlab-shell calls
+ # from spinach tests. Right now gitlab-shell calls are stubbed so this test
+ # will not pass
+ # find(:css, 'select#project_default_branch').value.should == 'stable'
+ end
end