Sha256: c18308d6ff6c2bc0cf8261b92d3f1ca4bf8429bee4dbb70f8076be1f65bf8d44

Contents?: true

Size: 387 Bytes

Versions: 10

Compression:

Stored size: 387 Bytes

Contents

FactoryGirl.define do
  factory :get_action do
    person
    occurred_at { DateTime.now }
  end

  factory :do_action, :class => DoAction do
    person
    subject     { person }
    details     { Faker::Lorem.sentence }
    occurred_at { DateTime.now }
  end

  factory :give_action do
    person
    subject { FactoryGirl.create(:donation) }
    occurred_at { DateTime.now }
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
artfully_ose-1.2.0 spec/factories/action_factories.rb
artfully_ose-1.2.0.beta.1 spec/factories/action_factories.rb
artfully_ose-1.2.0.alpha.2 spec/factories/action_factories.rb
artfully_ose-1.2.0.alpha.1 spec/factories/action_factories.rb
artfully_ose-1.2.0.pre.27 spec/factories/action_factories.rb
artfully_ose-1.2.0.pre.26 spec/factories/action_factories.rb
artfully_ose-1.2.0.pre.24 spec/factories/action_factories.rb
artfully_ose-1.2.0.pre.23 spec/factories/action_factories.rb
artfully_ose-1.2.0.pre.21 spec/factories/action_factories.rb
artfully_ose-1.2.0.pre.20 spec/factories/action_factories.rb