aboutsummaryrefslogtreecommitdiffstats
path: root/spec/requests/blog_categories_spec.rb
diff options
context:
space:
mode:
authorPhilip Arndt <parndt@gmail.com>2011-07-28 17:49:47 -0700
committerPhilip Arndt <parndt@gmail.com>2011-07-28 17:49:47 -0700
commitf0c2eb98675a4f6862d9ba41ace39a39c7811f7a (patch)
tree899bfbde240f3636064ee85bb37fb9c53b328098 /spec/requests/blog_categories_spec.rb
parent17f08ab5cb47e7d4d90385f1150e2373ed1abfa9 (diff)
parenta70ea17038b510df7dfea0997d92d051e6cc65e5 (diff)
downloadrefinerycms-blog-f0c2eb98675a4f6862d9ba41ace39a39c7811f7a.tar.gz
refinerycms-blog-f0c2eb98675a4f6862d9ba41ace39a39c7811f7a.tar.bz2
refinerycms-blog-f0c2eb98675a4f6862d9ba41ace39a39c7811f7a.zip
Merge pull request #105 from enmasse-entertainment/rails31-compatability-fixes
Rails31 compatability fixes
Diffstat (limited to 'spec/requests/blog_categories_spec.rb')
-rw-r--r--spec/requests/blog_categories_spec.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/spec/requests/blog_categories_spec.rb b/spec/requests/blog_categories_spec.rb
new file mode 100644
index 0000000..b98fdf5
--- /dev/null
+++ b/spec/requests/blog_categories_spec.rb
@@ -0,0 +1,19 @@
+require "spec_helper"
+
+describe "blog categories" do
+ before(:each) do
+ @blog_post = Factory(:blog_post, :title => "Refinery CMS blog post")
+ @blog_category = Factory(:blog_category, :title => "Video Games")
+ @blog_post.categories << @blog_category
+ @blog_post.save!
+ end
+
+ context "has posts" do
+ it "displays category's blog posts" do
+ visit blog_category_path(@blog_category)
+ page.should have_content("Refinery CMS blog post")
+ page.should have_content("Video Games")
+ end
+ end
+
+end