A collection of test helpers, additional assertions, and the like.
Project description
This package collects various helpers for writing tests.
assertEllipsis
An assertion which is very helpful when using Testbrowser with unittest.TestCase (instead of doctests).
Some examples:
self.assertEllipsis('...bar...', 'foo bar qux') # -> nothing happens self.assertEllipsis('foo', 'bar') # -> AssertionError: Differences (ndiff with -expected +actual): - foo + bar self.assertNotEllipsis('foo', 'foo') # -> AssertionError: "Value unexpectedly matches expression 'foo'."
To use, inherit from gocept.testing.assertion.Ellipsis in addition to unittest.TestCase.
CHANGES
1.0 (2011-11-02)
first release.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gocept.testing-1.0.tar.gz
(4.1 kB
view hashes)