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

describe BlogCategory do
  context "wiring up" do
    
    before(:each) do
      @category = Factory(:blog_category)
    end
  
    it "saves" do
      @category.should_not be_nil
    end
  
    it "has a blog post" do
      BlogPost.last.categories.should include(@category)
    end
    
  end
  
end