Sha256: 87a40f83bc859538a2cebb7f2f450c6e7728f54646e4aa0bab7a58addcf874e0
Contents?: true
Size: 355 Bytes
Versions: 17
Compression:
Stored size: 355 Bytes
Contents
FactoryBot.define do factory :work_order, class: Ecom::Core::WorkOrder do name { FFaker::Name.unique.name } association :assigned_to, factory: :crew association :generated_by, factory: :user start_date { (Time.now + 1.day).to_s } end_date { (Time.now + 1.month).to_s } status { Ecom::Core::WorkOrder::STATUSES.sample } end end
Version data entries
17 entries across 17 versions & 1 rubygems