summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorYesudeep Mangalapilly <yesudeep@gmail.com>2011-08-17 00:19:39 +0530
committerYesudeep Mangalapilly <yesudeep@gmail.com>2011-08-17 00:19:39 +0530
commiteaaabd0ecc9ef06eaf5734908f1476cbbc7565a5 (patch)
tree41392d0fcb91dcfafd2694a4300d45faecb38b7a /tests
parent9487ce6e5db4cb876c465e8bd51a3e579e118c0c (diff)
downloadrsa-eaaabd0ecc9ef06eaf5734908f1476cbbc7565a5.tar.gz
Fixes a silly error.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_common.py13
1 files changed, 11 insertions, 2 deletions
diff --git a/tests/test_common.py b/tests/test_common.py
index 9980b15..9b69193 100644
--- a/tests/test_common.py
+++ b/tests/test_common.py
@@ -16,7 +16,6 @@ class Test_byte(unittest2.TestCase):
self.assertRaises(struct.error, byte, 256)
self.assertRaises(struct.error, byte, -1)
-
class Test_byte_size(unittest2.TestCase):
def test_values(self):
self.assertEqual(byte_size(1 << 1023), 128)
@@ -24,7 +23,17 @@ class Test_byte_size(unittest2.TestCase):
self.assertEqual(byte_size(1 << 1024), 129)
def test_zero(self):
- self.assertEqual(byte_size(0), 0)
+ self.assertEqual(byte_size(0), 1)
+ self.assertEqual(byte_size(255), 1)
+ self.assertEqual(byte_size(256), 2)
+ self.assertEqual(byte_size(0xffff), 2)
+ self.assertEqual(byte_size(0xffffff), 3)
+ self.assertEqual(byte_size(0xffffffff), 4)
+ self.assertEqual(byte_size(0xffffffffff), 5)
+ self.assertEqual(byte_size(0xffffffffffff), 6)
+ self.assertEqual(byte_size(0xffffffffffffff), 7)
+ self.assertEqual(byte_size(0xffffffffffffffff), 8)
+
def test_bad_type(self):
self.assertRaises(TypeError, byte_size, [])