scinote-web/spec/factories/my_module_status_flows.rb

13 lines
265 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :my_module_status_flow do
name { Faker::Name.unique.name }
description { Faker::Lorem.sentence }
trait :in_team do
team { create :team }
visibility { :in_team }
end
end
end