summaryrefslogtreecommitdiff
path: root/features/steps/snippets/public_snippets.rb
diff options
context:
space:
mode:
Diffstat (limited to 'features/steps/snippets/public_snippets.rb')
-rw-r--r--features/steps/snippets/public_snippets.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/features/steps/snippets/public_snippets.rb b/features/steps/snippets/public_snippets.rb
index 67669dc0a69..2ebdca5ed30 100644
--- a/features/steps/snippets/public_snippets.rb
+++ b/features/steps/snippets/public_snippets.rb
@@ -4,11 +4,11 @@ class Spinach::Features::PublicSnippets < Spinach::FeatureSteps
include SharedSnippet
step 'I should see snippet "Personal snippet one"' do
- page.should have_no_xpath("//i[@class='public-snippet']")
+ expect(page).to have_no_xpath("//i[@class='public-snippet']")
end
step 'I should see raw snippet "Personal snippet one"' do
- page.should have_text(snippet.content)
+ expect(page).to have_text(snippet.content)
end
step 'I visit snippet page "Personal snippet one"' do