summaryrefslogtreecommitdiff
path: root/spec/factories/notes/notes_metadata.rb
blob: 555debbc0e55f4a1941e39d84c63e0243e903987 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

FactoryBot.define do
  factory :note_metadata, class: 'Notes::NoteMetadata' do
    note
    email_participant { 'email@example.com' }
  end
end