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.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/refinery/blog/comment_spec.rb b/spec/models/refinery/blog/comment_spec.rb
index 7a35a59..69430ac 100644
--- a/spec/models/refinery/blog/comment_spec.rb
+++ b/spec/models/refinery/blog/comment_spec.rb
@@ -7,11 +7,11 @@ module Refinery
let(:comment) { FactoryGirl.create(:blog_comment) }
it "saves" do
- comment.should_not be_nil
+ expect(comment).not_to be_nil
end
it "has a blog post" do
- comment.post.should_not be_nil
+ expect(comment.post).not_to be_nil
end
end
end