9 lines
192 B
Ruby
9 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
|