summaryrefslogtreecommitdiff
path: root/features/steps/snippet_search.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-09-22 20:56:12 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-09-22 20:56:12 +0300
commitc31c8c55a4b805932ff24e08dc4cdacb497b1a82 (patch)
treef4654ca2c6872015fb1346f5318c9c2d5140e18d /features/steps/snippet_search.rb
parentfbdf34d7abc678435ab4a603e93dcc83cb89a981 (diff)
parentef6e94e37e0fce23acf32992476aeb63405be0c1 (diff)
downloadgitlab-ce-c31c8c55a4b805932ff24e08dc4cdacb497b1a82.tar.gz
Merge branch 'spinach-step' of https://github.com/cirosantilli/gitlabhq into cirosantilli-spinach-step
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: features/steps/project/markdown_render.rb
Diffstat (limited to 'features/steps/snippet_search.rb')
-rw-r--r--features/steps/snippet_search.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/features/steps/snippet_search.rb b/features/steps/snippet_search.rb
index fe03b847c56..669c7186c1b 100644
--- a/features/steps/snippet_search.rb
+++ b/features/steps/snippet_search.rb
@@ -37,19 +37,19 @@ class Spinach::Features::SnippetSearch < Spinach::FeatureSteps
page.should_not have_content 'line three'
end
- Then 'I should see "Personal snippet one" in results' do
+ step 'I should see "Personal snippet one" in results' do
page.should have_content 'Personal snippet one'
end
- And 'I should see "Personal snippet private" in results' do
+ step 'I should see "Personal snippet private" in results' do
page.should have_content 'Personal snippet private'
end
- Then 'I should not see "Personal snippet one" in results' do
+ step 'I should not see "Personal snippet one" in results' do
page.should_not have_content 'Personal snippet one'
end
- And 'I should not see "Personal snippet private" in results' do
+ step 'I should not see "Personal snippet private" in results' do
page.should_not have_content 'Personal snippet private'
end