FactoryBot.define do factory :site_crew, class: Ecom::Core::SiteCrew do association :crew association :site site_crew_type { Ecom::Core::SiteCrew::SITE_CREW_TYPES.sample } start_date { Time.now } end_date { Time.now + 1.month } status { 'Active' } end end