aboutsummaryrefslogtreecommitdiffstats
path: root/spec/features/refinery/blog/categories_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/refinery/blog/categories_spec.rb')
-rw-r--r--spec/features/refinery/blog/categories_spec.rb28
1 files changed, 28 insertions, 0 deletions
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