8 lines
175 B
Ruby
8 lines
175 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :note_metadata, class: 'Notes::NoteMetadata' do
|
|
note
|
|
email_participant { 'email@example.com' }
|
|
end
|
|
end
|