9 lines
196 B
Ruby
9 lines
196 B
Ruby
|
require 'rails_helper'
|
||
|
|
||
|
RSpec.describe PortalMember, type: :model do
|
||
|
describe 'associations' do
|
||
|
it { is_expected.to belong_to(:portal) }
|
||
|
it { is_expected.to belong_to(:user) }
|
||
|
end
|
||
|
end
|