aboutsummaryrefslogtreecommitdiffstats
path: root/spec/factories/custom_fields.rb
blob: 897fb47863b6afd4279571e8452a78f86213825c (plain)
1
2
3
4
5
6
7
8
9
10
FactoryGirl.define do
  factory :custom_field do
    code "code"
    resource_type "VehicleJourney"
    sequence(:name){|n| "custom field ##{n}"}
    field_type "integer"
    options( { capacity: "0" } )
    workgroup { Referential.find_by!(name: "first").workgroup }
  end
end