Sha256: 2cce1cb24cdfafee999cdb13e6279d26aa0533fd239c2654d519eed41a454991

Contents?: true

Size: 591 Bytes

Versions: 53

Compression:

Stored size: 591 Bytes

Contents

module FactoryGirl
  class Attribute
    # @api private
    class Association < Attribute
      attr_reader :factory

      def initialize(name, factory, overrides)
        super(name, false)
        @factory   = factory
        @overrides = overrides
      end

      def to_proc
        factory   = @factory
        overrides = @overrides
        traits_and_overrides = [factory, overrides].flatten
        factory_name = traits_and_overrides.shift

        -> { association(factory_name, *traits_and_overrides) }
      end

      def association?
        true
      end
    end
  end
end

Version data entries

53 entries across 41 versions & 11 rubygems

Version Path
ffactory_girl-4.8.2 lib/factory_girl/attribute/association.rb
factory_girl-4.9.0 lib/factory_girl/attribute/association.rb
ffactory_girl-4.8.1 lib/factory_girl/attribute/association.rb
factory_girl-4.8.1 lib/factory_girl/attribute/association.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/factory_girl-4.8.0/lib/factory_girl/attribute/association.rb
factory_girl-4.8.0 lib/factory_girl/attribute/association.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/factory_girl-4.7.0/lib/factory_girl/attribute/association.rb
factory_girl-4.7.0 lib/factory_girl/attribute/association.rb
opal-factory_girl-4.5.0.3 factory_girl/lib/factory_girl/attribute/association.rb
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/factory_girl-4.5.0/lib/factory_girl/attribute/association.rb
solidus_backend-1.0.0.pre3 vendor/bundle/gems/factory_girl-4.5.0/lib/factory_girl/attribute/association.rb
solidus_backend-1.0.0.pre2 vendor/bundle/gems/factory_girl-4.5.0/lib/factory_girl/attribute/association.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/factory_girl-4.5.0/lib/factory_girl/attribute/association.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/factory_girl-4.4.0/lib/factory_girl/attribute/association.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/factory_girl-4.4.0/lib/factory_girl/attribute/association.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/factory_girl-4.4.0/lib/factory_girl/attribute/association.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/factory_girl-4.4.0/lib/factory_girl/attribute/association.rb
factory_girl-4.5.0 lib/factory_girl/attribute/association.rb
factory_girl-4.4.0 lib/factory_girl/attribute/association.rb
factory_girl-4.3.0 lib/factory_girl/attribute/association.rb