Welcome to mirror list, hosted at ThFree Co, Russian Federation.

abuse_reports.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f6422a7825e00d726db935fc96b9cf59ea5722f (plain)
1
2
3
4
5
6
7
FactoryGirl.define do
  factory :abuse_report do
    reporter factory: :user
    user
    message 'User sends spam'
  end
end