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/attribute/association_spec.rb

29 lines
754 B
Ruby

require 'spec_helper'
describe Factory::Attribute::Association do
before do
@name = :author
@factory = :user
@overrides = { :first_name => 'John' }
@attr = Factory::Attribute::Association.new(@name, @factory, @overrides)
end
it "should have a name" do
@attr.name.should == @name
end
it "should have a factory" do
@attr.factory.should == @factory
end
it "should tell the proxy to associate when being added to a proxy" do
proxy = "proxy"
stub(proxy).associate
@attr.add_to(proxy)
proxy.should have_received.associate(@name, @factory, @overrides)
end
it "should convert names to symbols" do
Factory::Attribute::Association.new('name', :user, {}).name.should == :name
end
end