We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 057740b commit d13c5ddCopy full SHA for d13c5dd
1 file changed
tests/test_bit.py
@@ -18,6 +18,10 @@ def test_list_int(self):
18
def test_str(self):
19
assert Bit('101').to_list() == [True, False, True]
20
21
+ def test_str_two(self):
22
+ # TODO raise
23
+ assert Bit('201').to_list() == [True, False, True]
24
+
25
def test_bytes(self):
26
assert Bit(b'\xff\x00\xf0').to_text() == '111111110000000011110000'
27
assert Bit(b'\xfe\x07\x00').to_text() == '111111100000011100000000'
0 commit comments