mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-08 14:15:35 +08:00
9 lines
212 B
Ruby
9 lines
212 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :step_result do
|
|
association :step, factory: :step
|
|
association :result, factory: :result
|
|
association :created_by, factory: :user
|
|
end
|
|
end
|