diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index df03af7ae5d..f437c8d1b73 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -85,6 +85,12 @@ need to derive from a specific class.
Kent Beck's original paper on testing frameworks using the pattern shared by
:mod:`unittest`.
+ `Nose `_ and `py.test `_
+ Third-party unittest frameworks with a lighter-weight syntax
+ for writing tests. For example, ``assert func(10) == 42``.
+
+ `python-mock `_ and `minimock `_
+ Tools for creating mock test objects (objects simulating external resources).
.. _unittest-minimal-example: