1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/spec/factory_girl/strategy/stub_spec.rb

46 lines
1.7 KiB
Ruby
Raw Normal View History

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", :build_stubbed
2012-02-08 10:17:57 -05:00
it_should_behave_like "strategy with callbacks", :after_stub
it_should_behave_like "strategy with strategy: :build", :build_stubbed
2011-08-12 22:06:10 -04:00
context "asking for a result" do
before { Timecop.freeze(Time.now) }
2011-12-16 14:10:25 -05:00
let(:result_instance) do
define_class("ResultInstance") do
attr_accessor :id
end.new
end
let(:evaluation) { stub("evaluation", object: result_instance, notify: true) }
2013-01-18 13:27:57 -05:00
it { expect(subject.result(evaluation)).not_to be_new_record }
it { expect(subject.result(evaluation)).to be_persisted }
2011-08-12 22:06:10 -04:00
it "assigns created_at" do
created_at = subject.result(evaluation).created_at
2013-01-18 13:27:57 -05:00
expect(created_at).to eq Time.now
Timecop.travel(150000)
2013-01-18 13:27:57 -05:00
expect(subject.result(evaluation).created_at).to eq created_at
end
[:save, :destroy, :connection, :reload, :update_attribute, :update_column].each do |database_method|
it "raises when attempting to connect to the database by calling #{database_method}" do
expect do
subject.result(evaluation).send(database_method)
end.to raise_error(RuntimeError, "stubbed models are not allowed to access the database - #{subject.result(evaluation).class}##{database_method}()")
2011-08-12 22:06:10 -04:00
end
end
it "raises when attempting to connect to the database by calling reload with optional lock:true" do
expect do
subject.result(evaluation).reload(lock: true)
end.to raise_error(RuntimeError, "stubbed models are not allowed to access the database - #{subject.result(evaluation).class}#reload()")
end
2009-04-11 11:27:23 -04:00
end
end