From d7158f975e671b78f0a064dd873cfa7805667528 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Mon, 15 Feb 2016 16:34:22 +0100 Subject: move tests into shared folder --- pathod/test/test_utils.py | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 pathod/test/test_utils.py (limited to 'pathod/test/test_utils.py') diff --git a/pathod/test/test_utils.py b/pathod/test/test_utils.py deleted file mode 100644 index 7d24e9e4..00000000 --- a/pathod/test/test_utils.py +++ /dev/null @@ -1,39 +0,0 @@ -from libpathod import utils -import tutils - - -def test_membool(): - m = utils.MemBool() - assert not m.v - assert m(1) - assert m.v == 1 - assert m(2) - assert m.v == 2 - - -def test_parse_size(): - assert utils.parse_size("100") == 100 - assert utils.parse_size("100k") == 100 * 1024 - tutils.raises("invalid size spec", utils.parse_size, "foo") - tutils.raises("invalid size spec", utils.parse_size, "100kk") - - -def test_parse_anchor_spec(): - assert utils.parse_anchor_spec("foo=200") == ("foo", "200") - assert utils.parse_anchor_spec("foo") is None - - -def test_data_path(): - tutils.raises(ValueError, utils.data.path, "nonexistent") - - -def test_inner_repr(): - assert utils.inner_repr("\x66") == "\x66" - assert utils.inner_repr(u"foo") == "foo" - - -def test_escape_unprintables(): - s = "".join([chr(i) for i in range(255)]) - e = utils.escape_unprintables(s) - assert e.encode('ascii') - assert not "PATHOD_MARKER" in e -- cgit v1.2.3