aboutsummaryrefslogtreecommitdiffstats
path: root/spec/features/refinery/blog/categories_spec.rb
diff options
context:
space:
mode:
authorPhilip Arndt <git@arndt.io>2014-12-05 11:53:18 -0800
committerPhilip Arndt <git@arndt.io>2014-12-05 11:53:18 -0800
commit50c4b236da7120674589c254b05f8e78f7d7e8b4 (patch)
treee696de404d22f38f03a767c6376d7198e433fbca /spec/features/refinery/blog/categories_spec.rb
parent1cec6e540daa2a5971290dc33bae77ed35f5429a (diff)
parentc5d248b280ca975579d3a09ae8b7253afa2b0752 (diff)
downloadrefinerycms-blog-50c4b236da7120674589c254b05f8e78f7d7e8b4.tar.gz
refinerycms-blog-50c4b236da7120674589c254b05f8e78f7d7e8b4.tar.bz2
refinerycms-blog-50c4b236da7120674589c254b05f8e78f7d7e8b4.zip
Merge pull request #402 from refinery/rspec-3-x
Rspec 3 x
Diffstat (limited to 'spec/features/refinery/blog/categories_spec.rb')
-rw-r--r--spec/features/refinery/blog/categories_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/refinery/blog/categories_spec.rb b/spec/features/refinery/blog/categories_spec.rb
index efcf388..b778254 100644
--- a/spec/features/refinery/blog/categories_spec.rb
+++ b/spec/features/refinery/blog/categories_spec.rb
@@ -19,8 +19,8 @@ module Refinery
describe "show categories blog posts" do
it "should displays categories blog posts" do
visit refinery.blog_category_path(@category)
- page.should have_content("Refinery CMS blog post")
- page.should have_content("Video Games")
+ expect(page).to have_content("Refinery CMS blog post")
+ expect(page).to have_content("Video Games")
end
end
end