Files
danbooru/test/factories/post_disapproval.rb
evazion f54470ddfb post disapprovals: fix tests and API create action.
* Fix tests.
* Fix create action in API (couldn't redirect to show action).
* Clean up user initialization.
2020-02-19 15:20:39 -06:00

8 lines
175 B
Ruby

FactoryBot.define do
factory(:post_disapproval) do
user
reason { %w(breaks_rules poor_quality disinterest).sample }
message { FFaker::Lorem.sentence }
end
end