diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-03-03 03:24:48 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-03-03 03:24:48 (GMT) |
commit | bfbf5b37153395d1100388f2398a80766bc4dba4 (patch) | |
tree | 5761834573c5e8c99a0637f849cfc504d370f18d /Lib | |
parent | 6382ffc892cb70603657797c3441968cfe55c9f8 (diff) | |
download | cpython-bfbf5b37153395d1100388f2398a80766bc4dba4.zip cpython-bfbf5b37153395d1100388f2398a80766bc4dba4.tar.gz cpython-bfbf5b37153395d1100388f2398a80766bc4dba4.tar.bz2 |
Add a note in the main test class' docstring that the order of execution of the
tests is important.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_largefile.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_largefile.py b/Lib/test/test_largefile.py index a98aab2..1da0e7d 100644 --- a/Lib/test/test_largefile.py +++ b/Lib/test/test_largefile.py @@ -25,6 +25,10 @@ class TestCase(unittest.TestCase): """Test that each file function works as expected for a large (i.e. > 2GB, do we have to check > 4GB) files. + NOTE: the order of execution of the test methods is important! test_seek + must run first to create the test file. File cleanup must also be handled + outside the test instances because of this. + """ def test_seek(self): |