fixes: https://linear.app/chatwoot/issue/CW-1574/renable-the-disabled-rubocop-rules
9 lines
178 B
Ruby
9 lines
178 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe TeamMember do
|
|
describe 'associations' do
|
|
it { is_expected.to belong_to(:team) }
|
|
it { is_expected.to belong_to(:user) }
|
|
end
|
|
end
|