Fix tests
This commit is contained in:
parent
2bc5ee88f7
commit
83616f77db
3 changed files with 5 additions and 3 deletions
|
@ -37,14 +37,14 @@ describe Admin::MailTemplatesController, type: :controller do
|
|||
expect {
|
||||
subject
|
||||
mail_template.reload
|
||||
}.to change(mail_template, :object).from("Object, voila voila").to(object)
|
||||
}.to change(mail_template, :object).from("[TPS] Accusé de réception pour votre dossier n°--numero_dossier--").to(object)
|
||||
}
|
||||
|
||||
it {
|
||||
expect {
|
||||
subject
|
||||
mail_template.reload
|
||||
}.to change(mail_template, :body).from("Blabla ceci est mon body").to(body)
|
||||
}.to change(mail_template, :body).from("Votre administration vous confirme la bonne réception de votre dossier n°--numero_dossier--").to(body)
|
||||
}
|
||||
end
|
||||
end
|
||||
|
|
|
@ -11,7 +11,7 @@ describe MailTemplateDecorator do
|
|||
|
||||
context 'when mail_template is a MailReceived' do
|
||||
let(:mail_template) {create :mail_template, :dossier_received}
|
||||
it { is_expected.to eq "Email d'accusé de réception" }
|
||||
it { is_expected.to eq "E-mail d'accusé de réception" }
|
||||
end
|
||||
|
||||
end
|
||||
|
|
|
@ -13,6 +13,8 @@ FactoryGirl.define do
|
|||
end
|
||||
|
||||
trait :dossier_received do
|
||||
object "[TPS] Accusé de réception pour votre dossier n°--numero_dossier--"
|
||||
body "Votre administration vous confirme la bonne réception de votre dossier n°--numero_dossier--"
|
||||
type 'MailReceived'
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue