summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_base64.py
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2003-05-01 17:45:56 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2003-05-01 17:45:56 (GMT)
commit21d3a32b99c5763444c34c189ef653ac9745f3c4 (patch)
tree766baf21fbced41da1e22490829fe938420600e0 /Lib/test/test_base64.py
parent90437c03f2215acebffec9669316b40d46bd9757 (diff)
downloadcpython-21d3a32b99c5763444c34c189ef653ac9745f3c4.zip
cpython-21d3a32b99c5763444c34c189ef653ac9745f3c4.tar.gz
cpython-21d3a32b99c5763444c34c189ef653ac9745f3c4.tar.bz2
Combine the functionality of test_support.run_unittest()
and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807.
Diffstat (limited to 'Lib/test/test_base64.py')
-rw-r--r--Lib/test/test_base64.py34
1 files changed, 17 insertions, 17 deletions
diff --git a/Lib/test/test_base64.py b/Lib/test/test_base64.py
index dfd67a3..f9f75f0 100644
--- a/Lib/test/test_base64.py
+++ b/Lib/test/test_base64.py
@@ -1,16 +1,16 @@
-from unittest import TestCase
-from test.test_support import vereq, run_unittest
-from base64 import encodestring, decodestring
+import unittest
+from test import test_support
+import base64
-class Base64TestCase(TestCase):
+class Base64TestCase(unittest.TestCase):
def test_encodestring(self):
- vereq(encodestring("www.python.org"), "d3d3LnB5dGhvbi5vcmc=\n")
- vereq(encodestring("a"), "YQ==\n")
- vereq(encodestring("ab"), "YWI=\n")
- vereq(encodestring("abc"), "YWJj\n")
- vereq(encodestring(""), "")
- vereq(encodestring("abcdefghijklmnopqrstuvwxyz"
+ self.assertEqual(base64.encodestring("www.python.org"), "d3d3LnB5dGhvbi5vcmc=\n")
+ self.assertEqual(base64.encodestring("a"), "YQ==\n")
+ self.assertEqual(base64.encodestring("ab"), "YWI=\n")
+ self.assertEqual(base64.encodestring("abc"), "YWJj\n")
+ self.assertEqual(base64.encodestring(""), "")
+ self.assertEqual(base64.encodestring("abcdefghijklmnopqrstuvwxyz"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"0123456789!@#0^&*();:<>,. []{}"),
"YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNE"
@@ -18,20 +18,20 @@ class Base64TestCase(TestCase):
"Y3ODkhQCMwXiYqKCk7Ojw+LC4gW117fQ==\n")
def test_decodestring(self):
- vereq(decodestring("d3d3LnB5dGhvbi5vcmc=\n"), "www.python.org")
- vereq(decodestring("YQ==\n"), "a")
- vereq(decodestring("YWI=\n"), "ab")
- vereq(decodestring("YWJj\n"), "abc")
- vereq(decodestring("YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNE"
+ self.assertEqual(base64.decodestring("d3d3LnB5dGhvbi5vcmc=\n"), "www.python.org")
+ self.assertEqual(base64.decodestring("YQ==\n"), "a")
+ self.assertEqual(base64.decodestring("YWI=\n"), "ab")
+ self.assertEqual(base64.decodestring("YWJj\n"), "abc")
+ self.assertEqual(base64.decodestring("YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNE"
"RUZHSElKS0xNTk9QUVJTVFVWV1hZWjAxMjM0\nNT"
"Y3ODkhQCMwXiYqKCk7Ojw+LC4gW117fQ==\n"),
"abcdefghijklmnopqrstuvwxyz"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"0123456789!@#0^&*();:<>,. []{}")
- vereq(decodestring(''), '')
+ self.assertEqual(base64.decodestring(''), '')
def test_main():
- run_unittest(Base64TestCase)
+ test_support.run_unittest(Base64TestCase)
if __name__ == "__main__":
test_main()