Sha256: 1a70d85124894a313285f4a11254a69463e41e1d2fa61ee7df6b92fd41f93321
Contents?: true
Size: 484 Bytes
Versions: 30
Compression:
Stored size: 484 Bytes
Contents
# Read about factories at https://github.com/thoughtbot/factory_girl FactoryGirl.define do factory :mno_enterprise_team, :class => 'MnoEnterprise::Team' do factory :team, class: MnoEnterprise::Team do sequence(:id) sequence(:name) { |n| "Team#{n}" } created_at 3.days.ago updated_at 1.hour.ago # Properly build the resource with Her initialize_with { new(attributes).tap { |e| e.clear_attribute_changes! } } end end end
Version data entries
30 entries across 30 versions & 1 rubygems