summaryrefslogtreecommitdiff
path: root/features/steps/project/project.rb
diff options
context:
space:
mode:
authorHannes Rosenögger <123haynes@gmail.com>2015-01-19 21:37:20 +0100
committerHannes Rosenögger <123haynes@gmail.com>2015-01-24 18:51:16 +0100
commit70c44a0da2bdeead90a99fe79e7c047d38b8ca5c (patch)
treed72df8e0b92754d5dd2e629a09d55695808e36d2 /features/steps/project/project.rb
parent42bac7f9f27b0e8fb113e452fc2106882262172d (diff)
downloadgitlab-ce-70c44a0da2bdeead90a99fe79e7c047d38b8ca5c.tar.gz
Fix tests, merge conflicts, some minor issues and make the project avatar feature mergable
Diffstat (limited to 'features/steps/project/project.rb')
-rw-r--r--features/steps/project/project.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/features/steps/project/project.rb b/features/steps/project/project.rb
index 455539d7471..033d45e0253 100644
--- a/features/steps/project/project.rb
+++ b/features/steps/project/project.rb
@@ -68,7 +68,7 @@ class Spinach::Features::Project < Spinach::FeatureSteps
step 'I should see project "Shop" version' do
within '.project-side' do
- page.should have_content "Version: 6.7.0.pre"
+ page.should have_content 'Version: 6.7.0.pre'
end
end
@@ -86,12 +86,12 @@ class Spinach::Features::Project < Spinach::FeatureSteps
end
step 'I should see project "Forum" README' do
- page.should have_link "README.md"
- page.should have_content "Sample repo for testing gitlab features"
+ page.should have_link 'README.md'
+ page.should have_content 'Sample repo for testing gitlab features'
end
step 'I should see project "Shop" README' do
- page.should have_link "README.md"
- page.should have_content "testme"
+ page.should have_link 'README.md'
+ page.should have_content 'testme'
end
end