aboutsummaryrefslogtreecommitdiffstats
path: root/spec/requests/blog_categories_spec.rb
blob: d18a552e1110095c2ce3509f3513a84ce815c2e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require "spec_helper"

describe "blog categories" do
  login_refinery_user
    
  context "has one category and post" do
    before(:each) do
      @blog_post = Factory.create(:blog_post, :title => "Refinery CMS blog post")
      @blog_category = Factory.create(:blog_category, :title => "Video Games")
      @blog_post.categories << @blog_category
      @blog_post.save!
    end
        
    describe "show categories blog posts" do
      before(:each) { visit blog_category_path(@blog_category) }
      
      it "should displays categories blog posts" do
        page.should have_content("Refinery CMS blog post")
        page.should have_content("Video Games")
      end
    end
  end
end