summaryrefslogtreecommitdiff
path: root/spec/factories/abuse_reports.rb
blob: 29fcbc5e197047a1de3e7f98ca3a7e3e4f09cb11 (plain)
1
2
3
4
5
6
7
8
9
# Read about factories at https://github.com/thoughtbot/factory_girl

FactoryGirl.define do
  factory :abuse_report do
    reporter factory: :user
    user
    message 'User sends spam'
  end
end