/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 bzrlib/tests/test_mail_client.py

  • Committer: Aaron Bentley
  • Date: 2007-08-14 17:06:51 UTC
  • mto: This revision was merged to the branch mainline in revision 2736.
  • Revision ID: abentley@panoramicfeedback.com-20070814170651-zf2c6rz1rxmwdyua
Rename test var evo => kmail

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
class TestKMail(tests.TestCase):
64
64
 
65
65
    def test_commandline(self):
66
 
        evo = mail_client.KMail(None)
67
 
        commandline = evo._get_compose_commandline(None, None, 'file%')
 
66
        kmail = mail_client.KMail(None)
 
67
        commandline = kmail._get_compose_commandline(None, None, 'file%')
68
68
        self.assertEqual(['--attach', 'file%'], commandline)
69
 
        commandline = evo._get_compose_commandline('jrandom@example.org',
70
 
                                                   'Hi there!', None)
 
69
        commandline = kmail._get_compose_commandline('jrandom@example.org',
 
70
                                                     'Hi there!', None)
71
71
        self.assertEqual(['-s', 'Hi there!', 'jrandom@example.org'],
72
72
                         commandline)
73
73