27 lines
657 B
Ruby
27 lines
657 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Group, type: :model do
|
|
describe 'association' do
|
|
it { should belong_to :stage }
|
|
it { should have_many :matches }
|
|
it { should have_many :group_scores }
|
|
end
|
|
|
|
describe '#teams' do
|
|
before do
|
|
@group = create(:group, match_count: 1) # this is getting stubbed anyways
|
|
@teams = create_list(:team, 4)
|
|
expect_any_instance_of(Match)
|
|
.to receive(:teams)
|
|
.and_return(@teams)
|
|
end
|
|
|
|
it 'returns all teams from the matches within the matches below' do
|
|
teams = @group.teams
|
|
expect(teams).to match_array(@teams)
|
|
end
|
|
end
|
|
end
|