13 lines
313 B
Ruby
13 lines
313 B
Ruby
|
|
require 'rails_helper'
|
||
|
|
|
||
|
|
RSpec.describe CustomRole, type: :model do
|
||
|
|
describe 'associations' do
|
||
|
|
it { is_expected.to belong_to(:account) }
|
||
|
|
it { is_expected.to have_many(:account_users).dependent(:nullify) }
|
||
|
|
end
|
||
|
|
|
||
|
|
describe 'validations' do
|
||
|
|
it { is_expected.to validate_presence_of(:name) }
|
||
|
|
end
|
||
|
|
end
|