Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | use assert[Not]In where appropriate | Ezio Melotti | 2010-01-23 | 1 | -1/+1 |
| | |||||
* | convert usage of fail* to assert* | Benjamin Peterson | 2009-06-30 | 1 | -19/+19 |
| | |||||
* | fix incorrect auto-translation of TestSkipped -> unittest.SkipTest | Benjamin Peterson | 2009-03-26 | 1 | -4/+4 |
| | |||||
* | remove test_support.TestSkipped and just use unittest.SkipTest | Benjamin Peterson | 2009-03-26 | 1 | -4/+4 |
| | |||||
* | Make sure that the warnings filter is not reset or changed beyond the current | Brett Cannon | 2008-03-19 | 1 | -28/+17 |
| | | | | | | running test file. Closes issue2407. Thanks Jerry Seutter. | ||||
* | Standardize on test.test_support.run_unittest() (as opposed to a mix of ↵ | Collin Winter | 2007-04-25 | 1 | -4/+2 |
| | | | | run_unittest() and run_suite()). Also, add functionality to run_unittest() that admits usage of unittest.TestLoader.loadTestsFromModule(). | ||||
* | Convert file names of posix.access according to the file system encoding. | Martin v. Löwis | 2005-03-08 | 1 | -0/+2 |
| | |||||
* | Try a different filename if the Latin-1 file name cannot | Martin v. Löwis | 2004-11-07 | 1 | -0/+17 |
| | | | | be represented in the file system. Fixes #989338. | ||||
* | Patch from Mark Hammond to fix a test error. | Raymond Hettinger | 2004-06-28 | 1 | -9/+12 |
| | | | | Now runs without exception on WinME/98. | ||||
* | Normalized files in test_unicode_file to eliminate failure on OSX | Nicholas Bastin | 2004-03-21 | 1 | -9/+29 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2004-01-18 | 1 | -3/+3 |
| | |||||
* | Fix test_unicode_file errors on platforms without Unicode file support, | Mark Hammond | 2003-12-03 | 1 | -4/+6 |
| | | | | | by setting TESTFN_UNICODE_UNENCODEABLE on these platforms. test_unicode_file only attempts to use the name for testing if not None. | ||||
* | Add test for bug "[ 846133 ] os.chmod/os.utime/shutil do not work with | Mark Hammond | 2003-12-03 | 1 | -76/+148 |
| | | | | | | | unicode filenames" Reorganize tests into functions so more combinations of unicode/encoded/ascii can be tested, and while I was at it, upgrade to unittest based test. | ||||
* | Demonstrate and fix [ 783882 ] os.lstat crashes with Unicode filename. | Mark Hammond | 2003-08-06 | 1 | -0/+2 |
| | | | | Will also check in on the 2.3 branch. | ||||
* | Whitespace normalization. | Tim Peters | 2003-04-24 | 1 | -1/+1 |
| | |||||
* | Test for UnicodeError instead of ImportError to determine whether | Martin v. Löwis | 2003-03-17 | 1 | -1/+1 |
| | | | | the test file name can be encoded. | ||||
* | Skip the test if TESTFN_ENCODING is None. Fixes #699386. | Martin v. Löwis | 2003-03-08 | 1 | -19/+6 |
| | |||||
* | Patch 594001: PEP 277 - Unicode file name support for Windows NT. | Mark Hammond | 2002-10-03 | 1 | -0/+4 |
| | |||||
* | Get rid of relative imports in all unittests. Now anything that | Barry Warsaw | 2002-07-23 | 1 | -2/+2 |
| | | | | | | | | | | | imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :) | ||||
* | Disable code intended for PEP 277. | Guido van Rossum | 2002-01-15 | 1 | -5/+6 |
| | |||||
* | Ensure Unicode filenames work with glob - they already do, but the test ↵ | Mark Hammond | 2002-01-07 | 1 | -1/+9 |
| | | | | seems worth keeping. | ||||
* | Patch #449815: Set filesystemencoding based on CODESET. | Martin v. Löwis | 2001-09-05 | 1 | -1/+15 |
| | |||||
* | Add support for Windows using "mbcs" as the default Unicode encoding when ↵ | Mark Hammond | 2001-05-13 | 1 | -0/+81 |
dealing with the file system. As discussed on python-dev and in patch 410465. |