2010-06-10 13:37:51 -04:00
|
|
|
require 'spec_helper'
|
2009-04-11 11:27:23 -04:00
|
|
|
|
2012-02-08 10:17:57 -05:00
|
|
|
describe FactoryGirl::Strategy::Stub do
|
|
|
|
it_should_behave_like "strategy with association support", FactoryGirl::Strategy::Stub
|
|
|
|
it_should_behave_like "strategy with callbacks", :after_stub
|
2012-02-17 11:29:11 -05:00
|
|
|
it_should_behave_like "strategy with :strategy => :build", FactoryGirl::Strategy::Stub
|
2011-08-12 22:06:10 -04:00
|
|
|
|
2011-08-16 23:08:24 -04:00
|
|
|
context "asking for a result" do
|
2011-09-02 16:22:53 -04:00
|
|
|
before { Timecop.freeze(Time.now) }
|
|
|
|
after { Timecop.return }
|
2011-12-16 14:10:25 -05:00
|
|
|
let(:result_instance) do
|
|
|
|
define_class("ResultInstance") do
|
|
|
|
attr_accessor :id
|
|
|
|
end.new
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:assigner) { stub("attribute assigner", :object => result_instance) }
|
|
|
|
let(:to_create) { lambda {|instance| instance } }
|
2011-09-02 16:22:53 -04:00
|
|
|
|
2011-12-16 14:10:25 -05:00
|
|
|
it { subject.result(assigner, to_create).should_not be_new_record }
|
|
|
|
it { subject.result(assigner, to_create).should be_persisted }
|
2011-08-12 22:06:10 -04:00
|
|
|
|
2011-09-02 16:22:53 -04:00
|
|
|
it "assigns created_at" do
|
2011-12-16 14:10:25 -05:00
|
|
|
created_at = subject.result(assigner, to_create).created_at
|
2011-09-02 16:22:53 -04:00
|
|
|
created_at.should == Time.now
|
|
|
|
|
|
|
|
Timecop.travel(150000)
|
|
|
|
|
2011-12-16 14:10:25 -05:00
|
|
|
subject.result(assigner, to_create).created_at.should == created_at
|
2011-09-02 16:22:53 -04:00
|
|
|
end
|
|
|
|
|
2011-08-16 23:08:24 -04:00
|
|
|
[:save, :destroy, :connection, :reload, :update_attribute].each do |database_method|
|
|
|
|
it "raises when attempting to connect to the database by calling #{database_method}" do
|
|
|
|
expect do
|
2011-12-16 14:10:25 -05:00
|
|
|
subject.result(assigner, to_create).send(database_method)
|
2011-08-16 23:08:24 -04:00
|
|
|
end.to raise_error(RuntimeError, "stubbed models are not allowed to access the database")
|
2011-08-12 22:06:10 -04:00
|
|
|
end
|
2009-04-28 10:39:32 -04:00
|
|
|
end
|
2009-04-11 11:27:23 -04:00
|
|
|
end
|
|
|
|
end
|