mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-08-16 09:17:48 +02:00
general: Remove all pathlib usage
This commit is contained in:
@ -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)"""
|
||||
|
Reference in New Issue
Block a user