Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix incorrect auto-translation of TestSkipped -> unittest.SkipTest | Benjamin Peterson | 2009-03-26 | 1 | -2/+3 |
| | |||||
* | remove test_support.TestSkipped and just use unittest.SkipTest | Benjamin Peterson | 2009-03-26 | 1 | -2/+2 |
| | |||||
* | Deprecate sunaudiodev/SUNAUDIODEV for removal in 3.0. | Brett Cannon | 2008-05-16 | 1 | -2/+2 |
| | |||||
* | Add test_main() functions to various tests where it was simple to do. Done so | Brett Cannon | 2008-03-03 | 1 | -2/+6 |
| | | | | | that regrtest can execute the test_main() directly instead of relying on import side-effects. | ||||
* | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 1 | -1/+1 |
| | |||||
* | Get rid of relative imports in all unittests. Now anything that | Barry Warsaw | 2002-07-23 | 1 | -1/+1 |
| | | | | | | | | | | | 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. :) | ||||
* | If the sunaudiodev module is available but we cannot find an audio | Fred Drake | 2001-04-14 | 1 | -1/+9 |
| | | | | | | | device to use, skip this test instead of allowing an error to occur when we attempt to play sound on the absent device. Verified by Mark Favas. | ||||
* | a bold attempt to fix things broken by MAL's verify patch: import | Fredrik Lundh | 2001-01-17 | 1 | -1/+1 |
| | | | | 'verify' iff it's used by a test module... | ||||
* | This patch removes all uses of "assert" in the regression test suite | Marc-André Lemburg | 2001-01-17 | 1 | -1/+1 |
| | | | | | | | and replaces them with a new API verify(). As a result the regression suite will also perform its tests in optimization mode. Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum. | ||||
* | Move unified findfile() into test_support.py | Guido van Rossum | 1998-04-23 | 1 | -14/+1 |
| | |||||
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -15/+15 |
| | |||||
* | Make this test work when imported from the interpreter instead of run | Guido van Rossum | 1998-01-29 | 1 | -1/+6 |
| | | | | from regrtest.py (it still works there too, of course). | ||||
* | Catch sunaudiodev.error on open() and re-raise TestFailed exception. | Barry Warsaw | 1997-01-13 | 1 | -3/+7 |
| | |||||
* | Oops, remove debugging statements | Barry Warsaw | 1997-01-13 | 1 | -1/+0 |
| | |||||
* | A slightly better test of sunaudiodev module. Include the audio data | Barry Warsaw | 1997-01-13 | 1 | -22/+9 |
| | | | | in the distribution. | ||||
* | Test of the sunaudiodev module -- it simply plays a sound if it can | Barry Warsaw | 1997-01-07 | 1 | -0/+38 |
find one and doesn't output any data that can be verified. If it can't find a sound file by looking in the standard Solaris locations (which we can extend later), it raises an ImportError. |