Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove the svn:executable property from files that don't have shebang lines | Benjamin Peterson | 2010-03-05 | 1 | -0/+0 |
| | |||||
* | Remove unused imports in test modules. | Georg Brandl | 2010-02-07 | 1 | -2/+1 |
| | |||||
* | 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 | -4/+4 |
| | |||||
* | Change more tests to use import_module for the modules that | R. David Murray | 2009-03-30 | 1 | -2/+3 |
| | | | | | should cause tests to be skipped. Also rename import_function to the more descriptive get_attribute and add a docstring. | ||||
* | Remove a bad test. | Brett Cannon | 2008-03-14 | 1 | -1/+0 |
| | |||||
* | Move test_gdbm to use unittest. | Brett Cannon | 2008-03-13 | 1 | -42/+79 |
| | | | | Closes issue #1960. Thanks Giampaolo Rodola. | ||||
* | Backported r51621 from p3yk: | Thomas Wouters | 2007-02-25 | 1 | -2/+2 |
| | | | | | | Don't use a fixed temporary name (gdbm). Don't use our own temp name creation (dbm). Should be backported to 2.5. | ||||
* | 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. :) | ||||
* | Check that f.keys() == [] right after creation -- this prevents bugs | Guido van Rossum | 2001-03-22 | 1 | -1/+2 |
| | | | | like the one I just fixed to come back and haunt us. | ||||
* | 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. | ||||
* | gdbm.open() no longer accepts garbage in the flags string. Fix the tests. | Neil Schemenauer | 2000-12-18 | 1 | -2/+7 |
| | |||||
* | Make reindent.py happy (convert everything to 4-space indents!). | Fred Drake | 2000-10-23 | 1 | -2/+2 |
| | |||||
* | Added test case for accessing gsbm database by key after it's closed; | Fred Drake | 2000-02-07 | 1 | -1/+7 |
| | | | | it should raise gdbm.error. | ||||
* | Many scripts, but small changes. Update the way the scripts obtain the | Roger E. Masse | 1996-12-20 | 1 | -3/+2 |
| | | | | | | | | | | | | | | | | 'verbose' flag ala GvR updated test harness architecture. Old way: verbose = 0 if __name__ == '__main__': verbose = 1 New way: from test_support import verbose Some other small readablility and functionality updates. | ||||
* | Test script for the GNU dbm module (gdbm) | Roger E. Masse | 1996-12-17 | 1 | -0/+35 |