aboutsummaryrefslogtreecommitdiffstats
path: root/test/pathod/test_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/pathod/test_utils.py')
-rw-r--r--test/pathod/test_utils.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/pathod/test_utils.py b/test/pathod/test_utils.py
index ab4abbae..a46a523a 100644
--- a/test/pathod/test_utils.py
+++ b/test/pathod/test_utils.py
@@ -1,8 +1,6 @@
from pathod import utils
import tutils
-import six
-
def test_membool():
m = utils.MemBool()
@@ -20,12 +18,3 @@ def test_parse_anchor_spec():
def test_data_path():
tutils.raises(ValueError, utils.data.path, "nonexistent")
-
-
-def test_escape_unprintables():
- s = bytes(range(256))
- if six.PY2:
- s = "".join([chr(i) for i in range(255)])
- e = utils.escape_unprintables(s)
- assert e.encode('ascii')
- assert "PATHOD_MARKER" not in e