From dee1a9d539b7efe43a54f589e1826b1cf1bafa58 Mon Sep 17 00:00:00 2001 From: Pete Higgins Date: Fri, 10 Feb 2012 00:48:52 -0800 Subject: Avoid creating some database records. --- spec/models/refinery/blog/post_spec.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'spec') diff --git a/spec/models/refinery/blog/post_spec.rb b/spec/models/refinery/blog/post_spec.rb index a781aef..acc4f95 100644 --- a/spec/models/refinery/blog/post_spec.rb +++ b/spec/models/refinery/blog/post_spec.rb @@ -114,15 +114,15 @@ module Refinery describe "#live?" do it "returns true if post is not in draft and it's published" do - FactoryGirl.create(:blog_post).live?.should be_true + Factory.build(:blog_post).should be_live end it "returns false if post is in draft" do - FactoryGirl.create(:blog_post, :draft => true).live?.should be_false + Factory.build(:blog_post, :draft => true).should_not be_live end it "returns false if post pub date is in future" do - FactoryGirl.create(:blog_post, :published_at => Time.now.advance(:minutes => 1)).live?.should be_false + Factory.build(:blog_post, :published_at => Time.now.advance(:minutes => 1)).should_not be_live end end -- cgit v1.2.3