turniere-backend/spec/factories/match_scores.rb

10 lines
134 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :match_score do
points { rand(0..10) }
match
team
end
end