/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/test_email_message.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-16 18:35:30 UTC
  • mfrom: (7143.15.15 more-cleanups)
  • mto: This revision was merged to the branch mainline in revision 7178.
  • Revision ID: jelmer@jelmer.uk-20181116183530-ue8yx60h5tinl2wy
Merge more-cleanups.

Show diffs side-by-side

added added

removed removed

Lines of Context:
147
147
    def test_multiple_destinations(self):
148
148
        to_addresses = ['to1@to.com', 'to2@to.com', 'to3@to.com']
149
149
        msg = EmailMessage('from@from.com', to_addresses, 'subject')
150
 
        self.assertContainsRe(msg.as_string(), 'To: 'ing(), 'To: ' +
 
150
        self.assertContainsRe(msg.as_string(), 'To: '
151
151
                              + ', '.join(to_addresses))  # re.M can't be passed, so no ^$
152
152
 
153
153
    def test_retrieving_headers(self):