From 7a76219d721d6e07a8b99dd3bbcfb87136d05052 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?U=C4=A3is=20Ozols?= Date: Thu, 27 Jun 2013 09:25:19 +0300 Subject: Update specs due to recent Capybara/FactoryGirl upgrade. --- spec/features/refinery/blog/categories_spec.rb | 28 ++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 spec/features/refinery/blog/categories_spec.rb (limited to 'spec/features/refinery/blog/categories_spec.rb') diff --git a/spec/features/refinery/blog/categories_spec.rb b/spec/features/refinery/blog/categories_spec.rb new file mode 100644 index 0000000..021dd94 --- /dev/null +++ b/spec/features/refinery/blog/categories_spec.rb @@ -0,0 +1,28 @@ +require "spec_helper" + +module Refinery + describe "BlogCategories" do + refinery_login_with :refinery_user + + context "has one category and post" do + before do + post = Globalize.with_locale(:en) do + FactoryGirl.create(:blog_post, :title => "Refinery CMS blog post") + end + @category = Globalize.with_locale(:en) do + FactoryGirl.create(:blog_category, :title => "Video Games") + end + post.categories << @category + post.save! + end + + 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") + end + end + end + end +end -- cgit v1.2.3