aboutsummaryrefslogblamecommitdiffstats
path: root/spec/models/blog_comments_spec.rb
blob: 145626d1b6fa686697d01523a8ed94158366dfc6 (plain) (tree)
1
2
3


                       














                                       

     
require 'spec_helper'

describe BlogComment do
  
  context "wiring up" do
    
    before(:each) do
      @comment = Factory(:blog_comment)
    end
  
    it "saves" do
      @comment.should_not be_nil
    end
  
    it "has a blog post" do
      @comment.post.should_not be_nil
    end
    
  end
end