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

trust_score.rb « abuse « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a5ea7666945cfc4a2cca75f60804bb2e14f1f055 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

FactoryBot.define do
  factory :abuse_trust_score, class: 'Abuse::TrustScore' do
    user
    score { 0.1 }
    source { :spamcheck }
    correlation_id_value { 'abcdefg' }
  end
end