mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 13:46:11 +10:00
10 lines
196 B
Ruby
10 lines
196 B
Ruby
# 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
|