summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2022-02-07 09:55:47 +0000
committerStephen Finucane <stephen@that.guru>2022-02-07 09:57:35 +0000
commit4d9624f5221972d3ae05617b332437818772562d (patch)
treee4e45fe46bb0437d394667b5a2e9e6773e9bf507
parent2442ca249c7675a990fd23f1497936f8c16eb90a (diff)
downloadtesttools-4d9624f5221972d3ae05617b332437818772562d.tar.gz
doc: Remove references to unittest2
Signed-off-by: Stephen Finucane <stephen@that.guru>
-rw-r--r--doc/for-framework-folk.rst5
-rw-r--r--doc/for-test-authors.rst2
-rw-r--r--setup.cfg2
3 files changed, 2 insertions, 7 deletions
diff --git a/doc/for-framework-folk.rst b/doc/for-framework-folk.rst
index 2fd6804..fb55ce1 100644
--- a/doc/for-framework-folk.rst
+++ b/doc/for-framework-folk.rst
@@ -133,10 +133,7 @@ DecorateTestCaseResult
This object calls out to your code when ``run`` / ``__call__`` are called and
allows the result object that will be used to run the test to be altered. This
is very useful when working with a test runner that doesn't know your test case
-requirements. For instance, it can be used to inject a ``unittest2`` compatible
-adapter when someone attempts to run your test suite with a ``TestResult`` that
-does not support ``addSkip`` or other ``unittest2`` methods. Similarly it can
-aid the migration to ``StreamResult``.
+requirements. For instance, it can aid the migration to ``StreamResult``.
e.g.::
diff --git a/doc/for-test-authors.rst b/doc/for-test-authors.rst
index 5261154..27ea212 100644
--- a/doc/for-test-authors.rst
+++ b/doc/for-test-authors.rst
@@ -84,7 +84,6 @@ of them will happily run testtools tests. In particular:
* testrepository_
* Trial_
* nose_
-* unittest2_
* `zope.testrunner`_ (aka zope.testing)
From now on, we'll assume that you know how to run your tests.
@@ -1463,7 +1462,6 @@ Here, ``repr(nullary)`` will be the same as ``repr(f)``.
.. _testrepository: https://launchpad.net/testrepository
.. _Trial: http://twistedmatrix.com/documents/current/core/howto/testing.html
.. _nose: http://somethingaboutorange.com/mrl/projects/nose/
-.. _unittest2: http://pypi.python.org/pypi/unittest2
.. _zope.testrunner: http://pypi.python.org/pypi/zope.testrunner/
.. _xUnit test patterns: http://xunitpatterns.com/
.. _fixtures: http://pypi.python.org/pypi/fixtures
diff --git a/setup.cfg b/setup.cfg
index c31f8f3..822b098 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -5,7 +5,7 @@ home_page = https://github.com/testing-cabal/testtools
description_file = doc/overview.rst
author = Jonathan M. Lange
author_email = jml+testtools@mumak.net
-classifier =
+classifier =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License