demarches-normaliennes/spec/models/groupe_gestionnaire_spec.rb
2023-10-03 13:51:57 +02:00

8 lines
318 B
Ruby

describe GroupeGestionnaire, type: :model do
describe 'associations' do
it { is_expected.to belong_to(:groupe_gestionnaire).optional }
it { is_expected.to have_many(:children) }
it { is_expected.to have_many(:administrateurs) }
it { is_expected.to have_and_belong_to_many(:gestionnaires) }
end
end