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/acceptance/attribute_existing_on_object_spec.rb

22 lines
536 B
Ruby
Raw Normal View History

2011-10-07 16:43:36 -04:00
require "spec_helper"
describe "declaring attributes on a Factory that are private methods on Object" do
before do
define_model("Website", :system => :boolean, :link => :string, :sleep => :integer)
FactoryGirl.define do
factory :website do
system false
link "http://example.com"
sleep 15
end
end
end
subject { FactoryGirl.build(:website, :sleep => -5) }
its(:system) { should == false }
its(:link) { should == "http://example.com" }
its(:sleep) { should == -5 }
end