Sha256: 23b661ad450e89694adfe0f26e346bd93ac014b006cfce8708d6b98071976527

Contents?: true

Size: 960 Bytes

Versions: 22

Compression:

Stored size: 960 Bytes

Contents

require 'spec_helper'

describe FactoryGirl::Attribute::Association do
  let(:name)        { :author }
  let(:factory)     { :user }
  let(:overrides)   { { :first_name => "John" } }
  let(:association) { stub("association") }
  let(:proxy)       { stub("proxy", :association => association) }

  subject { FactoryGirl::Attribute::Association.new(name, factory, overrides) }
  before  { subject.stubs(:association => association) }

  it         { should be_association }
  its(:name) { should == name }

  it "builds the association when calling the proc" do
    subject.to_proc.call.should == association
  end

  it "builds the association when calling the proc" do
    subject.to_proc.call
    subject.should have_received(:association).with(factory, overrides)
  end
end

describe FactoryGirl::Attribute::Association, "with a string name" do
  subject    { FactoryGirl::Attribute::Association.new("name", :user, {}) }
  its(:name) { should == :name }
end

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
challah-0.6.1 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/association_spec.rb
challah-0.6.0 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/association_spec.rb
challah-0.5.4 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/association_spec.rb
challah-0.5.3 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/association_spec.rb
challah-0.5.2 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/association_spec.rb
challah-0.5.0 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/association_spec.rb
factory_girl-2.5.2 spec/factory_girl/attribute/association_spec.rb
challah-0.4.1 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/association_spec.rb
challah-0.4.0 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/association_spec.rb
challah-0.3.5 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/association_spec.rb
challah-0.3.4 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/association_spec.rb
challah-0.3.3 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/association_spec.rb
challah-0.3.2 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/association_spec.rb
challah-0.3.1 vendor/bundle/gems/factory_girl-2.5.1/spec/factory_girl/attribute/association_spec.rb
factory_girl-2.5.1 spec/factory_girl/attribute/association_spec.rb
challah-0.3.0 vendor/bundle/gems/factory_girl-2.5.0/spec/factory_girl/attribute/association_spec.rb
challah-0.2.1 vendor/bundle/gems/factory_girl-2.5.0/spec/factory_girl/attribute/association_spec.rb
challah-0.2.0 vendor/bundle/gems/factory_girl-2.5.0/spec/factory_girl/attribute/association_spec.rb
factory_girl-2.5.0 spec/factory_girl/attribute/association_spec.rb
factory_girl-2.4.2 spec/factory_girl/attribute/association_spec.rb