about summary refs log tree commit diff
path: root/spec/fabricators/appeal_fabricator.rb
blob: 039086c4e57e3d24f12a7f41cb2bda0181dd6654 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

Fabricator(:appeal) do
  strike(fabricator: :account_warning)
  account { |attrs| attrs[:strike].target_account }
  text { Faker::Lorem.paragraph }
end