10 lines
249 B
Ruby
10 lines
249 B
Ruby
|
require 'rails_helper'
|
||
|
|
||
|
RSpec.describe Team, type: :model do
|
||
|
describe 'associations' do
|
||
|
it { is_expected.to belong_to(:account) }
|
||
|
it { is_expected.to have_many(:conversations) }
|
||
|
it { is_expected.to have_many(:team_members) }
|
||
|
end
|
||
|
end
|