Files
growstuff/spec/models/comment_spec.rb
2013-02-06 15:20:44 +11:00

17 lines
290 B
Ruby

require 'spec_helper'
describe Comment do
before(:each) do
@comment = FactoryGirl.create(:comment)
end
it "belongs to a post" do
@comment.post.should be_an_instance_of Post
end
it "belongs to an author" do
@comment.author.should be_an_instance_of Member
end
end