From a3c7102f42b220cc320fa28c8d5d82967e14931c Mon Sep 17 00:00:00 2001 From: Free Ekanayaka Date: Sat, 25 Feb 2017 16:44:52 +0100 Subject: [PATCH] Add testtools.assertions to the documented API modules (#257) This fixes #256. --- doc/api.rst | 8 ++++++++ testtools/assertions.py | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/doc/api.rst b/doc/api.rst index e33f71d..3e00969 100644 --- a/doc/api.rst +++ b/doc/api.rst @@ -18,6 +18,14 @@ testtools .. automodule:: testtools :members: +testtools.assertions +-------------------- + +.. automodule:: testtools.assertions + :members: + + + testtools.matchers ------------------ diff --git a/testtools/assertions.py b/testtools/assertions.py index 87fa74b..6c5f67e 100644 --- a/testtools/assertions.py +++ b/testtools/assertions.py @@ -1,3 +1,7 @@ +# Copyright (c) 2008-2017 testtools developers. See LICENSE for details. + +"""Assertion helpers.""" + from testtools.matchers import ( Annotate, MismatchError,