+Then /^des emails doivent avoir été envoyés à Jane, Fatima, Fred et Moly$/ do
+ recipients = Mail::TestMailer.deliveries.collect(&:to)
+ recipients.should include(['jane@example.org'])
+ recipients.should include(['fatima@example.org'])
+ recipients.should include(['fred@example.org'])
+ recipients.should include(['moly@example.org'])
+end
+