Sha256: d644c7c7afcfe5f74b01e3f833862df4a3fab4f5836f4e31eeef23c1ea68c118
Contents?: true
Size: 1.16 KB
Versions: 7
Compression:
Stored size: 1.16 KB
Contents
# Copyright (c) 2008-2013 Michael Dvorkin and contributors. # # Fat Free CRM is freely distributable under the terms of MIT license. # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php #------------------------------------------------------------------------------ FactoryGirl.define do factory :campaign do user name { FFaker::Lorem.sentence[0, 64] } assigned_to nil access "Public" status { %w(planned started completed planned started completed on_hold called_off).sample } budget { rand(500) } target_leads { rand(200) } target_conversion { rand(20) } target_revenue { rand(1000) } leads_count { rand(200) } opportunities_count { rand(20) } revenue { rand(1000) } ends_on { FactoryGirl.generate(:date) } starts_on { FactoryGirl.generate(:date) } objectives { FFaker::Lorem.paragraph[0, 255] } background_info { FFaker::Lorem.paragraph[0, 255] } deleted_at nil updated_at { FactoryGirl.generate(:time) } created_at { FactoryGirl.generate(:time) } end end
Version data entries
7 entries across 7 versions & 2 rubygems