scinote-web/spec/factories/my_modules.rb
2020-08-27 13:49:32 +02:00

22 lines
616 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :my_module do
sequence(:name) { |n| "Task-#{n}" }
sequence(:y) { |n| n }
sequence(:x) { |n| n }
workflow_order { MyModule.where(experiment_id: experiment.id).count + 1 }
experiment
my_module_group { create :my_module_group, experiment: experiment }
trait :with_tag do
tags { create_list :tag, 3, project: experiment.project }
end
trait :with_due_date do
due_date { Faker::Time.between(from: Date.today, to: Date.today + 10.days) }
end
trait :with_status do
my_module_status
end
end
end