def test_bits_per_byte_bad(self): with self.assertRaises(ValueError): self.assertEqual(etao.bits_to_bytes('1001010', bpb=6), 'J')
def test_bitby_array_int(self): bit_array = [int(c) for c in '0100100001101001'] self.assertEqual(etao.bits_to_bytes(bit_array), 'Hi')
def test_bits_per_byte(self): self.assertEqual(etao.bits_to_bytes('1001010', bpb=7), 'J')
def test_bitby_str(self): self.assertEqual(etao.bits_to_bytes('0100100001101001'), 'Hi')
def test_bitby_array_str(self): bit_char_array = [c for c in '0100100001101001'] self.assertEqual(etao.bits_to_bytes(bit_char_array), 'Hi')
def test_bits_per_byte_bad(self): with self.assertRaises(ValueError): self.assertEqual(etao.bits_to_bytes('1001010', bpb=6), b'J')
def test_bits_per_byte(self): self.assertEqual(etao.bits_to_bytes('1001010', bpb=7), b'J')
def test_bitby_array_int(self): bit_array = [int(c) for c in '0100100001101001'] self.assertEqual(etao.bits_to_bytes(bit_array), b'Hi')
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')
def test_bitby_str(self): self.assertEqual(etao.bits_to_bytes('0100100001101001'), b'Hi')