summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@canonical.com>2022-04-23 20:45:37 +0100
committerGitHub <noreply@github.com>2022-04-23 20:45:37 +0100
commit65340e3d46c167682eaa9724b2399decbeb78f88 (patch)
tree14f4b880da241b5f320eed1a37bbf6cd83f6d425
parentb39e940949cbff28aa5aabbac4ddaf53c8a8c351 (diff)
parentb0ad71a57b03081f05e97ec03b067f77fffaaf4b (diff)
downloadtesttools-65340e3d46c167682eaa9724b2399decbeb78f88.tar.gz
Merge branch 'master' into fix-3.11
-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