turniere-backend/spec/models/group_score_spec.rb

11 lines
205 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe GroupScore, type: :model do
describe 'association' do
it { should belong_to :team }
it { should belong_to :group }
end
end