Exemple #1
0
 def test_bits_per_byte_bad(self):
     with self.assertRaises(ValueError):
         self.assertEqual(etao.bits_to_bytes('1001010', bpb=6), 'J')
Exemple #2
0
 def test_bitby_array_int(self):
     bit_array = [int(c) for c in '0100100001101001']
     self.assertEqual(etao.bits_to_bytes(bit_array), 'Hi')
Exemple #3
0
 def test_bits_per_byte(self):
     self.assertEqual(etao.bits_to_bytes('1001010', bpb=7), 'J')
Exemple #4
0
 def test_bitby_str(self):
     self.assertEqual(etao.bits_to_bytes('0100100001101001'), 'Hi')
Exemple #5
0
 def test_bitby_array_str(self):
     bit_char_array = [c for c in '0100100001101001']
     self.assertEqual(etao.bits_to_bytes(bit_char_array), 'Hi')
Exemple #6
0
 def test_bits_per_byte_bad(self):
     with self.assertRaises(ValueError):
         self.assertEqual(etao.bits_to_bytes('1001010', bpb=6), b'J')
Exemple #7
0
 def test_bits_per_byte(self):
     self.assertEqual(etao.bits_to_bytes('1001010', bpb=7), b'J')
Exemple #8
0
 def test_bitby_array_int(self):
     bit_array = [int(c) for c in '0100100001101001']
     self.assertEqual(etao.bits_to_bytes(bit_array), b'Hi')
Exemple #9
0
 def test_bitby_array_str(self):
     bit_char_array = [c for c in '0100100001101001']
     self.assertEqual(etao.bits_to_bytes(bit_char_array), b'Hi')
Exemple #10
0
 def test_bitby_str(self):
     self.assertEqual(etao.bits_to_bytes('0100100001101001'), b'Hi')