summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_support.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-09-21 13:53:07 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-09-21 13:53:07 (GMT)
commit050a61f838dcbf4b6fad6eb83404a7eb1ffb9b9b (patch)
tree10809550311a87652ce03d66bfbe71758ad77a77 /Lib/test/test_support.py
parent8b15ee0d6e72ec91cbd2ec178bf2ae77cbd33b59 (diff)
parente418d760897cc6f6f4dedb364f80f3f52525ffa6 (diff)
downloadcpython-050a61f838dcbf4b6fad6eb83404a7eb1ffb9b9b.zip
cpython-050a61f838dcbf4b6fad6eb83404a7eb1ffb9b9b.tar.gz
cpython-050a61f838dcbf4b6fad6eb83404a7eb1ffb9b9b.tar.bz2
#15304: merge with 3.2.
Diffstat (limited to 'Lib/test/test_support.py')
-rw-r--r--Lib/test/test_support.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py
index 14fcdbf..f6ef5f6 100644
--- a/Lib/test/test_support.py
+++ b/Lib/test/test_support.py
@@ -95,6 +95,15 @@ class TestSupport(unittest.TestCase):
self.assertFalse(os.path.exists(TESTFN))
self.assertTrue(os.path.basename(os.getcwd()), here)
+ def test_temp_cwd__chdir_warning(self):
+ """Check the warning message when os.chdir() fails."""
+ path = TESTFN + '_does_not_exist'
+ with support.check_warnings() as recorder:
+ with support.temp_cwd(path=path, quiet=True):
+ pass
+ messages = [str(w.message) for w in recorder.warnings]
+ self.assertEqual(messages, ['tests may fail, unable to change the CWD to ' + path])
+
def test_sortdict(self):
self.assertEqual(support.sortdict({3:3, 2:2, 1:1}), "{1: 1, 2: 2, 3: 3}")