demarches-normaliennes/spec/models/follow_commentaire_groupe_gestionnaire_spec.rb
2024-08-22 09:26:48 +02:00

9 lines
295 B
Ruby

# frozen_string_literal: true
describe FollowCommentaireGroupeGestionnaire, type: :model do
describe 'associations' do
it { is_expected.to belong_to(:gestionnaire) }
it { is_expected.to belong_to(:groupe_gestionnaire) }
it { is_expected.to belong_to(:sender).optional }
end
end