Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
3c919cf140170a03c20ec68a8fe63586b718d057
/
Lib
/
test
/
test_unittest.py
0ce1672
expected failure should not trigger failfast behavior in unittest.
by Michael Foord
· 15 years ago
4989969
Removing Python 2.3 compatibility code from unittest.
by Michael Foord
· 15 years ago
db003cb
Fix failing test committed by accident.
by Michael Foord
· 15 years ago
1b9e953
-f/--failfast command line option for unittest. Issue 8074. Documentation still needed. Plus minor change to test_unittest to allow it to be run with python -m test.unittest
by Michael Foord
· 15 years ago
b1aa30f
Issue 7815. __unittest in module globals trims frames from reported stacktraces in unittest.
by Michael Foord
· 15 years ago
73dbe04
A faulty load_tests in a test module no longer halts test discovery. A placeholder test, that reports the failure, is created instead.
by Michael Foord
· 15 years ago
98e7b76
Issue 7832: renaming unittest.TestCase.assertSameElements to assertItemsEqual and changing behaviour
by Michael Foord
· 15 years ago
5ffa325
Addition of setUpClass and setUpModule shared fixtures to unittest.
by Michael Foord
· 15 years ago
53e8eea
Fix for potentials errors in constructing unittest failure messages. Plus skipped test methods no longer run setUp and tearDown (Issue 8059)
by Michael Foord
· 15 years ago
d99ef9a
unittest.TestResult can now be used with the TextTestRunner. TextTestRunner compatible with old TestResult objects.
by Michael Foord
· 15 years ago
f28fd24
Issue 6292: for the moment at least, the test suite passes if run
by R. David Murray
· 15 years ago
ae3db0a
Support for old TestResult object (unittest) with warnings when using unsupported features.
by Michael Foord
· 15 years ago
2f67756
Silence UnicodeWarning in crazy unittest test.
by Michael Foord
· 15 years ago
c2294dd
Fix unittest.TestCase.assertDictContainsSubset so it can't die with unicode issues when constructing failure messages. Issue 7956
by Michael Foord
· 15 years ago
225a099
unittest.TestCase uses safe_repr for producing failure messages. Partial fix for issue 7956
by Michael Foord
· 15 years ago
1c3abf4
Fix for unittest tests, to be merged to py3k
by Michael Foord
· 15 years ago
db43b5a
Issue 7893 and Issue 7588
by Michael Foord
· 15 years ago
fe6349c
Make assertMultiLineEqual the default for comparing unicode strings.
by Michael Foord
· 15 years ago
2bd52dc
assertRaises as context manager now allows you to access exception as documented
by Michael Foord
· 15 years ago
dc3694b
Rename "exc_value" attribute on assertRaises context manager to "exception".
by Georg Brandl
· 15 years ago
0877060
unittest.TestLoader creates a TestSuite before calling load_tests. Issue 7799.
by Michael Foord
· 15 years ago
0ac4d4c
Silence a couple of -3 warnings
by Ezio Melotti
· 15 years ago
b0f5adc
use assert[Not]IsInstance where appropriate
by Ezio Melotti
· 15 years ago
aa98058
use assert[Not]In where appropriate
by Ezio Melotti
· 15 years ago
ce8e33a
Reverting the Revision: 77368. I committed Flox's big patch for tests by
by Senthil Kumaran
· 15 years ago
3ddc435
Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox
by Senthil Kumaran
· 15 years ago
0734c63
Issue #7197: Allow unittest.TextTestRunner objects to be pickled and
by Antoine Pitrou
· 16 years ago
b6edf19
Check and revert expected sys.path alterations
by Nick Coghlan
· 16 years ago
f895cf5
#7031: Add TestCase.assertIsInstance and negated method.
by Georg Brandl
· 16 years ago
e91ea56
Test discovery in unittest will only attempt to import modules that are importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568.
by Michael Foord
· 16 years ago
5a9719d
unittest.TestLoader.loadTestsFromName honors the loader suiteClass attribute. Issue 6866.
by Michael Foord
· 16 years ago
c3f7937
Objects that compare equal automatically pass or fail assertAlmostEqual and assertNotAlmostEqual tests on unittest.TestCase. Issue 6567.
by Michael Foord
· 16 years ago
e2a7798
issue 6275
by Kristján Valur Jónsson
· 16 years ago
d7b0eeb
split unittest.py into a package
by Benjamin Peterson
· 16 years ago
91dcd93
Move TestRunner initialisation into unittest.TestProgram.runTests. Fixes issue 6418.
by Michael Foord
· 16 years ago
6b0032f
use assert* methods in test_unittest
by Benjamin Peterson
· 16 years ago
d53d085
Fix unittest discovery tests for Windows. Issue 6199
by Michael Foord
· 16 years ago
dad7b7b
Restore default testRunner argument in unittest.main to None. Issue 6177
by Michael Foord
· 16 years ago
b4a81c8
Add test discovery to unittest. Issue 6001.
by Michael Foord
· 16 years ago
176a56c
make class skipping decorators the same as skipping every test of the class
by Benjamin Peterson
· 16 years ago
a50af06
Rename TestCase._result to _resultForDoCleanups to avoid potential clashes in TestCase subclasses. Issue 6072.
by Michael Foord
· 16 years ago
5d31e05
Adds a verbosity keyword argument to unittest.main plus a minor fix allowing you to specify test modules / classes
by Michael Foord
· 16 years ago
07ef487
by Michael Foord
· 16 years ago
e2fb98f
Add addCleanup and doCleanups to unittest.TestCase.
by Michael Foord
· 16 years ago
d7e8e34
don't let sys.argv be used in the tests
by Benjamin Peterson
· 16 years ago
829f6b8
Adds an exit parameter to unittest.main(). If False main no longer
by Michael Foord
· 16 years ago
f2dfef1
Adding assertIs and assertIsNot methods to unittest.TestCase
by Michael Foord
· 16 years ago
e2942d0
Store the functions in the _type_equality_funcs as wrapped objects that are deep copyable.
by Michael Foord
· 16 years ago
345b2fe
Better exception messages for unittest assert methods.
by Michael Foord
· 16 years ago
7558d57
Rename the actual method definitions to the official assertFoo names.
by Gregory P. Smith
· 16 years ago
2839985
The unittest.TestCase.assertEqual() now displays the differences in lists,
by Gregory P. Smith
· 16 years ago
47d9738
rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
by Benjamin Peterson
· 16 years ago
cb2b0e4
comply with the evilJavaNamingScheme for attribute names
by Benjamin Peterson
· 16 years ago
692428e
implement test skipping and expected failures
by Benjamin Peterson
· 16 years ago
697ca3d
Issue #4444: Allow assertRaises() to be used as a context handler.
by Antoine Pitrou
· 16 years ago
2f3c16b
Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just
by Jeffrey Yasskin
· 17 years ago
c756d00
Replaced import of the 'new' module with 'types' module and added a deprecation warning to the 'new' module.
by Christian Heimes
· 17 years ago
170eee9
Fix those parts in the testsuite that assumed that sys.maxint would cause overflow on x64. Now the testsuite is well behaved on that platform.
by Kristján Valur Jónsson
· 18 years ago
ea5962f
Whitespace normalization.
by Tim Peters
· 18 years ago
d9e5026
Add some sanity checks to unittest.TestSuite's addTest(s) methods.
by Georg Brandl
· 18 years ago
15c5ce9
Patches #1550273, #1550272: fix a few bugs in unittest and add a
by Georg Brandl
· 18 years ago
fafd874
Added an __iter__ method for test suites.
by Jim Fulton
· 21 years ago