From c355eaa4ce695ae0d21bcb0c67cc5cbc7d9cbba7 Mon Sep 17 00:00:00 2001
From: Paul McCarthy <pauldmccarthy@gmail.com>
Date: Wed, 28 Feb 2018 15:32:50 +0000
Subject: [PATCH] new unit test for tempdir

---
 tests/test_tempdir.py | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/tests/test_tempdir.py b/tests/test_tempdir.py
index bd3f9a5c4..0495deb03 100644
--- a/tests/test_tempdir.py
+++ b/tests/test_tempdir.py
@@ -40,3 +40,14 @@ def test_tempdir_root():
     with tempdir.tempdir() as root:
         with tempdir.tempdir(root=root) as td:
             assert op.dirname(td) == root
+
+
+def test_tempdir_changeto():
+
+    cwd = op.realpath(os.getcwd())
+
+    # make sure cwd is not changed
+    with tempdir.tempdir(changeto=False):
+        assert op.realpath(os.getcwd()) == cwd
+
+    assert op.realpath(os.getcwd()) == cwd
-- 
GitLab