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:
authorRobert Speicher <rspeicher@gmail.com>2015-06-12 07:44:13 +0300
committerRobert Speicher <rspeicher@gmail.com>2015-06-12 12:12:09 +0300
commit69bbc413fec7aa4168d9ff12df5421674db90032 (patch)
tree215a7f16d4630067bf4863d8d6f992fcac23969e /features/steps/search.rb
parentb07cf1182f78c5c46edbfa0fde668dd75ae47e05 (diff)
Update all `should`-style syntax to `expect` in features
Diffstat (limited to 'features/steps/search.rb')
-rw-r--r--features/steps/search.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/features/steps/search.rb b/features/steps/search.rb
index 8197cd410aa..3703a7565d5 100644
--- a/features/steps/search.rb
+++ b/features/steps/search.rb
@@ -48,11 +48,11 @@ class Spinach::Features::Search < Spinach::FeatureSteps
end
step 'I should see "Shop" project link' do
- page.should have_link "Shop"
+ expect(page).to have_link "Shop"
end
step 'I should see code results for project "Shop"' do
- page.should have_content 'Update capybara, rspec-rails, poltergeist to recent versions'
+ expect(page).to have_content 'Update capybara, rspec-rails, poltergeist to recent versions'
end
step 'I search for "Contibuting"' do
@@ -71,15 +71,15 @@ class Spinach::Features::Search < Spinach::FeatureSteps
end
step 'I should see "Foo" link in the search results' do
- find(:css, '.search-results').should have_link 'Foo'
+ expect(find(:css, '.search-results')).to have_link 'Foo'
end
step 'I should not see "Bar" link in the search results' do
- find(:css, '.search-results').should_not have_link 'Bar'
+ expect(find(:css, '.search-results')).not_to have_link 'Bar'
end
step 'I should see "test_wiki" link in the search results' do
- find(:css, '.search-results').should have_link 'test_wiki.md'
+ expect(find(:css, '.search-results')).to have_link 'test_wiki.md'
end
step 'project has Wiki content' do