diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-09-22 20:56:12 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-09-22 20:56:12 +0300 |
commit | c31c8c55a4b805932ff24e08dc4cdacb497b1a82 (patch) | |
tree | f4654ca2c6872015fb1346f5318c9c2d5140e18d /features/steps/snippet_search.rb | |
parent | fbdf34d7abc678435ab4a603e93dcc83cb89a981 (diff) | |
parent | ef6e94e37e0fce23acf32992476aeb63405be0c1 (diff) | |
download | gitlab-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.rb | 8 |
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 |