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/admin/logs.rb
parentb07cf1182f78c5c46edbfa0fde668dd75ae47e05 (diff)
Update all `should`-style syntax to `expect` in features
Diffstat (limited to 'features/steps/admin/logs.rb')
-rw-r--r--features/steps/admin/logs.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/features/steps/admin/logs.rb b/features/steps/admin/logs.rb
index 904e5468655..f9e49588c75 100644
--- a/features/steps/admin/logs.rb
+++ b/features/steps/admin/logs.rb
@@ -4,8 +4,8 @@ class Spinach::Features::AdminLogs < Spinach::FeatureSteps
include SharedAdmin
step 'I should see tabs with available logs' do
- page.should have_content 'production.log'
- page.should have_content 'githost.log'
- page.should have_content 'application.log'
+ expect(page).to have_content 'production.log'
+ expect(page).to have_content 'githost.log'
+ expect(page).to have_content 'application.log'
end
end