a0c33254e7
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
8 lines
192 B
Ruby
8 lines
192 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe TeamMember, type: :model do
|
|
describe 'associations' do
|
|
it { is_expected.to belong_to(:team) }
|
|
it { is_expected.to belong_to(:user) }
|
|
end
|
|
end
|