mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-04 06:36:27 +08:00
8 lines
155 B
Ruby
8 lines
155 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :result_text do
|
|
text { Faker::Lorem.paragraph }
|
|
result { create(:result) }
|
|
end
|
|
end
|