aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_utils.py')
-rw-r--r--test/test_utils.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/test_utils.py b/test/test_utils.py
index 49312a4b..db6feb4d 100644
--- a/test/test_utils.py
+++ b/test/test_utils.py
@@ -22,10 +22,6 @@ def test_isXml():
assert utils.isXML(" \n<foo")
-def test_hexdump():
- assert utils.hexdump("one\0"*10)
-
-
def test_del_all():
d = dict(a=1, b=2, c=3)
utils.del_all(d, ["a", "x", "b"])
@@ -125,13 +121,6 @@ def test_parse_content_type():
assert v == ('text', 'html', {'charset': 'UTF-8'})
-def test_cleanBin():
- assert utils.cleanBin("one") == "one"
- assert utils.cleanBin("\00ne") == ".ne"
- assert utils.cleanBin("\nne") == "\nne"
- assert utils.cleanBin("\nne", True) == ".ne"
-
-
def test_safe_subn():
assert utils.safe_subn("foo", u"bar", "\xc2foo")