aboutsummaryrefslogtreecommitdiffstats
path: root/spec/models/refinery/blog/comment_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/refinery/blog/comment_spec.rb')
-rw-r--r--spec/models/refinery/blog/comment_spec.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/spec/models/refinery/blog/comment_spec.rb b/spec/models/refinery/blog/comment_spec.rb
new file mode 100644
index 0000000..3a77100
--- /dev/null
+++ b/spec/models/refinery/blog/comment_spec.rb
@@ -0,0 +1,19 @@
+require 'spec_helper'
+
+module Refinery
+ module Blog
+ describe Comment do
+ context "wiring up" do
+ let(:comment) { FactoryGirl.create(:blog_comment) }
+
+ it "saves" do
+ comment.should_not be_nil
+ end
+
+ it "has a blog post" do
+ comment.post.should_not be_nil
+ end
+ end
+ end
+ end
+end