Reviewed by Benjamin Peterson.
This commit is contained in:
parent
ae5360b31e
commit
4c19e6e02d
|
@ -43,6 +43,13 @@ class FileTests(unittest.TestCase):
|
|||
os.closerange(first, first + 2)
|
||||
self.assertRaises(OSError, os.write, first, "a")
|
||||
|
||||
def test_rename(self):
|
||||
path = 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):
|
||||
self.files = []
|
||||
|
|
Loading…
Reference in New Issue