summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e33a3cf)
raw | patch | inline | side by side (parent: e33a3cf)
author | schlatterbeck <schlatterbeck@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 15 Jul 2011 10:03:37 +0000 (10:03 +0000) | ||
committer | schlatterbeck <schlatterbeck@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 15 Jul 2011 10:03:37 +0000 (10:03 +0000) |
- better name to be able to match it when running single test on the
command line
- use iso8859-1 instead of latin1, python2.7 will convert latin1 to
iso8859-1 which made the test fail
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4632 57a73879-2fb5-44c3-a270-3262357dd7e2
command line
- use iso8859-1 instead of latin1, python2.7 will convert latin1 to
iso8859-1 which made the test fail
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4632 57a73879-2fb5-44c3-a270-3262357dd7e2
test/test_mailer.py | patch | blob | history |
diff --git a/test/test_mailer.py b/test/test_mailer.py
index 95d0df4cb373e109d65e3ac2ac15090a392e947d..ea84f65ca5de4710e972619ca6ec2bd14d3b82da 100644 (file)
--- a/test/test_mailer.py
+++ b/test/test_mailer.py
from roundup import mailer
class EncodingTestCase(unittest.TestCase):
- def test(self):
+ def testEncoding(self):
a = lambda n, a, c, o: self.assertEquals(mailer.nice_sender_header(n,
a, c), o)
- a('ascii', 'ascii@test.com', 'latin1', 'ascii <ascii@test.com>')
- a(u'café', 'ascii@test.com', 'latin1',
- '=?latin1?q?caf=E9?= <ascii@test.com>')
- a('as"ii', 'ascii@test.com', 'latin1', '"as\\"ii" <ascii@test.com>')
+ a('ascii', 'ascii@test.com', 'iso8859-1', 'ascii <ascii@test.com>')
+ a(u'café', 'ascii@test.com', 'iso8859-1',
+ '=?iso8859-1?q?caf=E9?= <ascii@test.com>')
+ a('as"ii', 'ascii@test.com', 'iso8859-1', '"as\\"ii" <ascii@test.com>')
def test_suite():
suite = unittest.TestSuite()