mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
11 lines
235 B
Ruby
11 lines
235 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
FactoryBot.define do
|
||
|
factory :my_module_status do
|
||
|
name { Faker::Name.unique.name }
|
||
|
description { Faker::Lorem.sentence }
|
||
|
color { Faker::Color.hex_color }
|
||
|
my_module_status_flow
|
||
|
end
|
||
|
end
|