summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Fixed duplicated line in NEWS file.1.0Gustavo Niemeyer2010-06-201-2/+0
* Setting version and date in NEWS file.Gustavo Niemeyer2010-06-201-1/+1
* Preparing to release version 1.0!Gustavo Niemeyer2010-06-202-2/+2
* MockerTestCase.assertRaises() will now return the exception raised,Gustavo Niemeyer2010-06-203-0/+62
|\
| * Return exception in failUnlessRaises, test it.Thomas Hervé2008-11-192-0/+59
* | Fixed support for MockerTestCase.addCleanup() in Python 2.3,Gustavo Niemeyer2010-06-203-1/+51
* | Unwrap bound methods on replace() and proxy(), as suggestedGustavo Niemeyer2010-06-203-0/+17
* | Use the more reliable expect() automatically with MockerTestCase.Gustavo Niemeyer2010-06-202-3/+7
* | Implemented Expect helper, which allows creating a new expect()Gustavo Niemeyer2010-06-203-3/+35
* | Added MockerTestCase to __all__.Gustavo Niemeyer2010-06-202-1/+3
* | Applied change suggested by David Glick to avoid reimporting modules (#529675).Gustavo Niemeyer2010-06-202-2/+6
* | Changed license to BSD, since the PSF license only applies to PythonGustavo Niemeyer2010-06-203-263/+82
* | Updated NEWS file.Gustavo Niemeyer2010-06-192-0/+11
* | Fixed support for Python 2.6. Mocking of iterators was broken inGustavo Niemeyer2010-06-192-1/+22
* | __nonzero__ should necessarily return a boolean value, so transform MockGustavo Niemeyer2010-03-152-1/+8
* | Merged 328990-mocker-hides-exception branch from Duncan McGreggor. ThisGustavo Niemeyer2009-02-132-1/+17
|\ \ | |/ |/|
| * - Added a new unit test to check for a bug in mocker where the originalDuncan McGreggor2009-02-132-1/+16
|/
* Moved the __mocker_mock__ cleaning up test from Patcher into itsGustavo Niemeyer2008-07-011-2/+8
* Merging branch from Thomas which changes Mocker.patch() to use theGustavo Niemeyer2008-07-012-1/+3
|\
| * Use the version that passes the landscape tests. Add a test for one of the fix.Thomas Hervé2008-06-302-1/+4
* | Prevent the MockerTestCase base from leaving the mocker in replay modeGustavo Niemeyer2008-07-012-0/+28
|/
* A couple of changes to better accomodate py3k changes.Gustavo Niemeyer2008-03-281-2/+2
* When cleaning up on MockerTestCase, use reset() rather than restore(),Gustavo Niemeyer2008-03-282-1/+12
* Fixed patching of objects which define __getattr__.0.10.1Gustavo Niemeyer2007-12-113-5/+81
* Preparing to release 0.10.0.10Gustavo Niemeyer2007-12-092-2/+2
* Orderer() is now implemented based on may_run() instead of matches().Gustavo Niemeyer2007-12-093-31/+70
* Introduced {Task,Event}.may_run() to improve replaying orderingGustavo Niemeyer2007-12-092-21/+115
* When the expression executed isn't exactly the same as theGustavo Niemeyer2007-12-093-7/+43
* Fixed problem when requesting order on similar expressions. TheGustavo Niemeyer2007-12-093-13/+34
* MockerTestCase.makeFile() with content=None (the default) nowGustavo Niemeyer2007-12-073-8/+17
* New 'path' option to MockerTestCase.makeFile() and makeDir(),Gustavo Niemeyer2007-12-053-15/+47
* New MATCH() argument matcher, which allows using a functionGustavo Niemeyer2007-12-053-3/+28
* Implemented MockerTestCase.addCleanup(). It allows one toGustavo Niemeyer2007-12-053-21/+47
* Now when a spec is provided (or with proxy/replace/patch) theGustavo Niemeyer2007-12-043-0/+26
* MockerTestCase now verifies if the mocker is put in replayGustavo Niemeyer2007-12-043-1/+30
* Implemented support for Deferred results as understood byGustavo Niemeyer2007-12-043-6/+65
* In MockerTestCase's constructor, copy attributes from the original methodGustavo Niemeyer2007-12-042-1/+15
* Break the import of sets for Python 2.3 and add pragma: nocoverGustavo Niemeyer2007-11-241-2/+2
* Preparing to release 0.9.3.0.9.3Gustavo Niemeyer2007-11-242-2/+2
* - Added support for Python 2.3 (patch by Phillip J. Eby).Gustavo Niemeyer2007-11-243-63/+101
* Introduced automatic test coverage verification, and covered theGustavo Niemeyer2007-11-233-12/+93
* Updated version to 0.9.2.0.9.2Gustavo Niemeyer2007-11-221-1/+1
* Now Mocker.mock()/proxy()/replace() accept a 'count' keywordGustavo Niemeyer2007-11-223-10/+51
* In recording mode, mock.__class__ will now return Mock, and notGustavo Niemeyer2007-11-223-7/+33
* Typo fix in NEWS.Gustavo Niemeyer2007-11-191-1/+1
* Fixed setup.py to install mocker.py properly.0.9.1Gustavo Niemeyer2007-11-183-1/+8
* "unexistent" doesn't exist.Gustavo Niemeyer2007-11-171-1/+1
* Preparing to release version 0.9.0.9Gustavo Niemeyer2007-11-172-2/+2
* Added MockerTestCase.assert[Not]{Starts,Ends}With().Gustavo Niemeyer2007-11-173-0/+150
* Added MockerTestCase.assertMethodsMatch(). It will verify if allGustavo Niemeyer2007-11-173-0/+102