Sha256: e60d405d82111bcf1e98932a696518c07184296fe291f6b6d754f75585f551b6
Contents?: true
Size: 1.16 KB
Versions: 4
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 sequence :klass_name do |_x| %w(Contact Account Opportunity Lead Campaign).sample end sequence(:field_position) { |x| x } sequence :field_label do |x| FFaker::Internet.user_name + x.to_s end factory :field_group do klass_name { FactoryGirl.generate(:klass_name) } label { FactoryGirl.generate(:field_label) } tag end factory :field do type "Field" field_group { FactoryGirl.create(:field_group) } position { FactoryGirl.generate(:field_position) } label { FactoryGirl.generate(:field_label) } name { |f| f.label.downcase.gsub(/[^a-z0-9]+/, '_') } as "string" updated_at { FactoryGirl.generate(:time) } created_at { FactoryGirl.generate(:time) } end factory :custom_field do type "CustomField" end end
Version data entries
4 entries across 4 versions & 2 rubygems