eBooru/test/factories/post_report_reason.rb

10 lines
172 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory(:post_report_reason) do
reason { nil }
creator { create(:user) }
description { "test" }
end
end