From: Hirokazu Yamamoto Date: Mon, 8 Sep 2008 23:03:47 +0000 (+0000) Subject: Issue #3804: Added test for Issue #2222. X-Git-Tag: v2.6rc1~23 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=74ce88fd67465bf3386b3358aa120e29b75d5353;p=thirdparty%2FPython%2Fcpython.git Issue #3804: Added test for Issue #2222. Reviewed by Benjamin Peterson. --- diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index a618af42b451..583df2b4bf6d 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -47,6 +47,13 @@ class FileTests(unittest.TestCase): os.closerange(first, first + 2) self.assertRaises(OSError, os.write, first, "a") + def test_rename(self): + path = unicode(test_support.TESTFN) + old = sys.getrefcount(path) + self.assertRaises(TypeError, os.rename, path, 0) + new = sys.getrefcount(path) + self.assertEqual(old, new) + class TemporaryFileTests(unittest.TestCase): def setUp(self):