10 lines
174 B
Ruby
10 lines
174 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
FactoryBot.define do
|
||
|
factory :procedure_label do
|
||
|
name { 'Un label' }
|
||
|
color { 'green-bourgeon' }
|
||
|
association :procedure
|
||
|
end
|
||
|
end
|