mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
10 lines
235 B
Ruby
10 lines
235 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Team 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
|