Guido van Rossum
|
e2ae77b8b8
|
SF patch #474590 -- RISC OS support
|
2001-10-24 20:42:55 +00:00 |
Fred Drake
|
2e2be3760c
|
Change the PyUnit-based tests to use the test_main() approach. This
allows using the tests with unittest.py as a script. The tests will
still run when run as a script themselves.
|
2001-09-20 21:33:42 +00:00 |
Jack Jansen
|
97df7b61f2
|
The test used int(time.time()) to get a random number, but this doesn't work on the mac (where times are bigger than ints). Changed to int(time.time()%1000000).
|
2001-06-19 20:20:05 +00:00 |
Tim Peters
|
6626c1f183
|
create_message(): When os.link() doesn't exist, make a copy of the msg
instead. Allows this test to finish on Windows again.
|
2001-05-22 16:29:01 +00:00 |
Fred Drake
|
c02bc3e819
|
Re-write the mailbox test suite to use PyUnit. Cover a lot more ground
for the Maildir mailbox format. This still does not address other mailbox
formats.
|
2001-05-21 20:23:21 +00:00 |
Guido van Rossum
|
75ebb29f88
|
Some other tests, when failing, don't always remove their TESTFN file.
Try to do it for them, so our mkdir() operation doesn't fail.
|
2001-04-10 15:01:20 +00:00 |
Guido van Rossum
|
ca956e2e47
|
When catching errors from os.rmdir(), test for os.error, not IOError!
|
2001-03-02 05:46:17 +00:00 |
Fred Drake
|
0aaed272a7
|
Added test for regression on SourceForge bug #117490.
|
2000-10-23 13:39:15 +00:00 |