2017-05-02 15:37:06 +02:00
require " rails_helper "
RSpec . describe AvisMailer , type : :mailer do
2017-06-07 18:18:24 +02:00
describe '.avis_invitation' do
2017-05-02 15:37:06 +02:00
let ( :avis ) { create ( :avis ) }
2017-06-07 18:18:24 +02:00
subject { described_class . avis_invitation ( avis ) }
2017-05-02 15:37:06 +02:00
it { expect ( subject . subject ) . to eq ( " Donnez votre avis sur le dossier nº #{ avis . dossier . id } ( #{ avis . dossier . procedure . libelle } ) " ) }
2017-05-23 13:28:17 +02:00
it { expect ( subject . body ) . to include ( " Vous avez été invité par #{ avis . claimant . email } à donner votre avis sur le dossier nº #{ avis . dossier . id } de la procédure : #{ avis . dossier . procedure . libelle } . " ) }
2017-05-02 15:37:06 +02:00
it { expect ( subject . body ) . to include ( avis . introduction ) }
2017-05-23 13:28:17 +02:00
2017-05-02 15:37:06 +02:00
end
end