8 lines
167 B
Ruby
8 lines
167 B
Ruby
FactoryBot.define do
|
|
factory :note_comment do
|
|
sequence(:body) { |n| "This is note comment #{n}" }
|
|
visible { true }
|
|
event { "opened" }
|
|
note
|
|
end
|
|
end
|