]> nos-oignons.net Git - gestion-adh.git/blob - features/step_definitions/emails.rb
Only send reminders when the time has really come
[gestion-adh.git] / features / step_definitions / emails.rb
1 #-*- coding: utf-8 -*-
2
3 Then /^aucun email ne doit avoir été envoyé$/ do
4   Mail::TestMailer.deliveries.should be_empty
5 end
6
7 Then /^un appel pour la cotisation doit avoir été envoyé$/ do
8   Mail::TestMailer.deliveries.should have(1).email
9   mail = Mail::TestMailer.deliveries.first
10   expect(mail.from).to eql([NosOignons::BOARD_EMAIL])
11   expect(mail.to).to eql([@last_member['email']])
12   expect(mail.subject).to include('Renouvellement de votre cotisation')
13   expect(mail.body).to include(@last_member['name'])
14   expect(mail.body).to include('30 jours')
15 end
16
17 Then /^l'appel envoyé doit demander de vérifier l'adresse postale$/ do
18   mail = Mail::TestMailer.deliveries.first
19   expect(mail.body.to_s.gsub(/^ */, '')).to include(@last_member['address'])
20 end
21
22 Then /^un (premier|dernier) rappel pour la cotisation doit avoir été envoyé$/ do |kind|
23   mail = Mail::TestMailer.deliveries.first
24   expect(mail.subject).to include("(#{kind == 'premier' ? '' : 'dernier '}rappel)")
25 end
26
27 Then /^(\d+) emails? (?:doit|doivent) avoir été envoyés?$/ do |count|
28   Mail::TestMailer.deliveries.should have(count).email
29 end
30
31 Then /^des emails doivent avoir été envoyés à Jane, Fatima, Fred et Moly$/ do
32   recipients = Mail::TestMailer.deliveries.collect(&:to)
33   recipients.should include(['jane@example.org'])
34   recipients.should include(['fatima@example.org'])
35   recipients.should include(['fred@example.org'])
36   recipients.should include(['moly@example.org'])
37 end
38
39 Then /^un email doit avoir été envoyé au comité de déontologie$/ do
40   expect(Mail::TestMailer.deliveries).to have(1).email
41   expect(Mail::TestMailer.deliveries.first.to).to include('deontologie@nos-oignons.net')
42 end
43
44 Then /^il doit contenir les adresses emails de Jane et Fred$/ do
45   expect(Mail::TestMailer.deliveries.first.body).to include('jane@example.org')
46   expect(Mail::TestMailer.deliveries.first.body).to include('fred@example.org')
47 end
48