Sha256: 2e6bd854ed585a2c9253711387ff64679dc35b7f9bf606588e14953375fdce76
Contents?: true
Size: 518 Bytes
Versions: 56
Compression:
Stored size: 518 Bytes
Contents
module FactoryGirl class Declaration # @api private class Association < Declaration def initialize(name, options) super(name, false) @options = options end def ==(other) name == other.name && options == other.options end protected attr_reader :options private def build factory_name = @options.delete(:factory) || name [Attribute::Association.new(name, factory_name, @options)] end end end end
Version data entries
56 entries across 56 versions & 4 rubygems