()
| 21 | |
| 22 | |
| 23 | def test_to_binary(): |
| 24 | assert to_binary(6) == bytes(6) |
| 25 | assert to_binary(b"aa") == b"aa" |
| 26 | assert to_binary("cc") == b"cc" |
| 27 | assert to_binary(u"喵") == b"\xe5\x96\xb5" |
| 28 | assert to_binary("喵") == b"\xe5\x96\xb5" |
| 29 | |
| 30 | |
| 31 | def test_pay_sign_dict(): |
nothing calls this directly
no test coverage detected