mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
cccdc98426
Extract a number of string and format-related functions to netlib.strutils.
17 lines
357 B
Python
17 lines
357 B
Python
# coding=utf-8
|
|
|
|
from netlib import utils, tutils
|
|
|
|
|
|
def test_bidi():
|
|
b = utils.BiDi(a=1, b=2)
|
|
assert b.a == 1
|
|
assert b.get_name(1) == "a"
|
|
assert b.get_name(5) is None
|
|
tutils.raises(AttributeError, getattr, b, "c")
|
|
tutils.raises(ValueError, utils.BiDi, one=1, two=1)
|
|
|
|
|
|
def test_hexdump():
|
|
assert list(utils.hexdump(b"one\0" * 10))
|