Sha256: f3d3e44404b8d424d2aa8cc0ee7e52072334becf491c45f84729a56687b2746f

Contents?: true

Size: 467 Bytes

Versions: 94

Compression:

Stored size: 467 Bytes

Contents

module FactoryGirl
  class Attribute #:nodoc:
    class Association < Attribute  #:nodoc:
      attr_reader :factory

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

      def to_proc
        factory   = @factory
        overrides = @overrides
        lambda { association(factory, overrides) }
      end

      def association?
        true
      end
    end
  end
end

Version data entries

94 entries across 85 versions & 5 rubygems

Version Path
challah-0.4.0 vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/attribute/association.rb
challah-0.3.5 vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/attribute/association.rb
challah-0.3.4 vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/attribute/association.rb
challah-0.3.3 vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/attribute/association.rb
challah-0.3.2 vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/attribute/association.rb
challah-0.3.1 vendor/bundle/gems/factory_girl-2.5.1/lib/factory_girl/attribute/association.rb
factory_girl-2.5.1 lib/factory_girl/attribute/association.rb
challah-0.3.0 vendor/bundle/gems/factory_girl-2.5.0/lib/factory_girl/attribute/association.rb
challah-0.2.1 vendor/bundle/gems/factory_girl-2.5.0/lib/factory_girl/attribute/association.rb
challah-0.2.0 vendor/bundle/gems/factory_girl-2.5.0/lib/factory_girl/attribute/association.rb
factory_girl-2.5.0 lib/factory_girl/attribute/association.rb
factory_girl-2.4.2 lib/factory_girl/attribute/association.rb
factory_girl-2.4.1 lib/factory_girl/attribute/association.rb
factory_girl-2.4.0 lib/factory_girl/attribute/association.rb