Sha256: 26d737ff0e62ad4631ef1d4a402414816c39084cd7b4852d07c4f3c8148f878e

Contents?: true

Size: 354 Bytes

Versions: 13

Compression:

Stored size: 354 Bytes

Contents

FactoryGirl.define do
    factory :oasis, class: Band do |b|
        b.name 'Oasis'
    end

    factory :metallica, class: Band do |b|
        b.name 'Metallica'
    end

    factory :green_day, class: Band::Punk do |b|
        b.name 'Green Day'
    end

    factory :blink_182, class: Band::Punk::PopPunk do |b|
        b.name 'Blink 182'
    end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
acts_as_favoritor-2.0.0 test/factories/bands.rb
acts_as_favoritor-1.5.0 test/factories/bands.rb
acts_as_favoritor-1.4.0 test/factories/bands.rb
acts_as_favoritor-1.3.2 test/factories/bands.rb
acts_as_favoritor-1.2.2 test/factories/bands.rb
acts_as_favoritor-1.2.1 test/factories/bands.rb
acts_as_favoritor-1.2.0 test/factories/bands.rb
acts_as_favoritor-1.1.3 test/factories/bands.rb
acts_as_favoritor-1.1.2 test/factories/bands.rb
acts_as_favoritor-1.1.0 test/factories/bands.rb
acts_as_favoritor-1.0.2 test/factories/bands.rb
acts_as_favoritor-1.0.1 test/factories/bands.rb
acts_as_favoritor-1.0.0 test/factories/bands.rb