FactoryGirl.define do factory :cargo_detail, class: 'Logistics::Core::CargoDetail' do weight 1.5 quantity 2.0 association :content_type association :offer_request association :cargo_type description { FFaker::Lorem.paragraph } association :container_type association :container_size truck_number 1.0 length 1.5 height 1.5 width 1.5 status { FFaker::Name.name } association :service_delivery_unit end end