general: Remove all pathlib usage

This commit is contained in:
Dylan Araps
2017-08-10 09:17:11 +10:00
parent 979ec3ee10
commit 05c271c3a7
11 changed files with 53 additions and 53 deletions

View File

@ -16,7 +16,8 @@ class TestMain(unittest.TestCase):
"""> Test arg parsing (-c)"""
args = __main__.get_args(["-c"])
__main__.process_args(args)
self.assertFalse(os.path.isdir(str(CACHE_DIR / "schemes")))
scheme_dir = os.path.join(CACHE_DIR, "schemes")
self.assertFalse(os.path.isdir(scheme_dir))
def test_args_e(self):
"""> Test arg parsing (-e)"""