summaryrefslogtreecommitdiff
path: root/testtools/testcase.py
Commit message (Expand)AuthorAgeFilesLines
* More RunTest related interfacesJonathan Lange2015-12-101-5/+5
* Sketch of interfacesJonathan Lange2015-12-101-1/+5
* Overhaul exception reporting.Robert Collins2015-03-101-2/+6
* Fix setUpClass upcalls on Python 2.6.Robert Collins2014-11-171-1/+1
* Fix skipping setUpClass with self.skipExceptionRobert Collins2014-11-161-5/+5
* Fix masking of fixture.setUp errors.Robert Collins2014-09-121-2/+12
* Fix handling of uncatchable exceptions.Robert Collins2014-09-021-4/+21
* Fix issue where using the skip* family of decorators still ran the setUp and ...Thomi Richards2014-09-011-0/+6
* Error if setUp or tearDown are called twice.Robert Collins2014-08-221-1/+14
* Merge pull request #82 from thomir/fix-expectedFailureJonathan Lange2014-05-261-0/+17
|\
| * Added failing test for python 3.4 unittest.expectedFailure decorator changes.Thomi Richards2014-03-101-0/+17
* | Add optional message to assert(Not)InJoe Gordon2014-02-141-4/+4
|/
* Add expectThat method to testtools.TestCase.Thomi Richards2013-12-091-8/+35
* Remove documentation suggestion that we support anything older than 2.6.Daniel Watkins2013-12-031-2/+0
* Don't support Python 2.4 test method naming.Daniel Watkins2013-12-031-6/+1
* We no longer need to handle string exceptions in TestCase.Daniel Watkins2013-12-031-3/+0
* Add 'force_failure' feature to testtools.TestCase.Thomi Richards2013-11-281-1/+3
* Add the 'addDetailUniqueName' method to TestCase.Thomi Richards2013-10-181-6/+22
* Fix TestSkipped importing with unittest2.Robert Collins2013-06-161-1/+1
* Clarify docstrings for skipIf and skipUnless.Clint Byrum2013-05-071-2/+2
* Teach ExpectedException how to annotate errors.Robert Collins2013-04-181-2/+9
* DecorateTestCaseResult was missing some used attributes in its exclusion ofRobert Collins2013-04-041-2/+2
* Add a helper for decorating the result object given toRobert Collins2013-03-071-0/+49
* Add support for timestamp events to Placeholder objects.Robert Collins2013-03-071-1/+8
* Placeholder couldn't hold tags, which limits its use.Robert Collins2013-03-071-1/+6
* The error message for setUp and tearDown upcall errors was broken onRobert Collins2013-03-051-2/+4
* Report filenames in upcall errors.Monty Taylor2013-02-071-2/+4
* Fix epytext for *argsJonathan Lange2013-01-311-1/+1
* Add a nosetests attr-like extension to enable more ways of filtering tests.Robert Collins2013-01-311-4/+59
* Delete Python 2.4 only code.Robert Collins2013-01-311-5/+0
* * Testtools will no longer override test code registered details calledRobert Collins2013-01-191-3/+6
* * Testtools now depends on extras, a small library split out from it to containRobert Collins2013-01-181-1/+2
* Simplify _add_reason a little.Robert Collins2012-04-031-3/+1
* * ``PlaceHolder`` and ``ErrorHolder`` now support being given result details.Robert Collins2012-04-031-36/+35
* Move to testcase so it doesn't appear in stack traces.Jonathan Lange2012-01-291-1/+19
* Extract Nullary and move it into helpers.Jonathan Lange2012-01-291-7/+3
* Make sure the repr of the callable passed to assertRaises is included in theJonathan Lange2012-01-281-2/+7
* More doc tweaksJonathan Lange2011-12-051-5/+5
* Merge trunk.Jonathan Lange2011-09-141-40/+42
|\
| * Review changes.Jonathan Lange2011-08-151-5/+6
| * * ``MatchesException`` now permits a tuple of types rather than a single typeRobert Collins2011-08-151-8/+16
| * Port assertIsInstance to matchers.Robert Collins2011-08-141-6/+6
| * assertNotIn using assertThat.Robert Collins2011-08-141-3/+2
| * Reduce spelling of assert* functions which call assertThat.Robert Collins2011-08-141-10/+10
| * * assertThat accepts a message which will be used to annotate the matcher. ThisRobert Collins2011-08-141-1/+2
| * More convert-to-matchers tweaks.Robert Collins2011-08-141-10/+4
| * Migrate assertIn to be matcher based.Robert Collins2011-08-141-3/+2
* | assertThat docs & NEWS update for changeJonathan Lange2011-08-051-1/+1
* | Add MismatchError, with tests. Change assertThat to raise MismatchErrorJonathan Lange2011-08-051-7/+2
|/
* ExpectedException will now match any exception of the type by default,Jonathan Lange2011-07-271-5/+7