eBooru/test/factories/takedown.rb
Earlopain 979e2e4d5f
[Tests] Add basic tests for takedowns
Would have ccaught the breakage from frozen string literals
2024-03-17 19:16:01 +01:00

12 lines
233 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory(:takedown) do
creator_ip_addr { "127.0.0.1" }
email { "dummy@example.com" }
source { "example.com" }
reason { "foo" }
instructions { "bar" }
end
end