mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
29 lines
819 B
Ruby
29 lines
819 B
Ruby
require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', '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
|