Welcome to mirror list, hosted at ThFree Co, Russian Federation.

notes_metadata.rb « notes « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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