summaryrefslogtreecommitdiff
path: root/test-cli/test/helpers/changedir.py
diff options
context:
space:
mode:
Diffstat (limited to 'test-cli/test/helpers/changedir.py')
-rw-r--r--test-cli/test/helpers/changedir.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/test-cli/test/helpers/changedir.py b/test-cli/test/helpers/changedir.py
new file mode 100644
index 0000000..fad9ade
--- /dev/null
+++ b/test-cli/test/helpers/changedir.py
@@ -0,0 +1,14 @@
+import os
+
+
+class changedir:
+ """Context manager for changing the current working directory"""
+ def __init__(self, newPath):
+ self.newPath = os.path.expanduser(newPath)
+
+ def __enter__(self):
+ self.savedPath = os.getcwd()
+ os.chdir(self.newPath)
+
+ def __exit__(self, etype, value, traceback):
+ os.chdir(self.savedPath) \ No newline at end of file