From 032f19e00908c2a8df016f7224bf9ee3a25a459d Mon Sep 17 00:00:00 2001 From: Andrea Bergonzo Date: Fri, 6 Apr 2018 03:00:00 +0100 Subject: [PATCH] Update testing.rst --- testing.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing.rst b/testing.rst index 7cf8575..fa12347 100644 --- a/testing.rst +++ b/testing.rst @@ -1,7 +1,7 @@ Let There Be Tests ================== -The **funniest** package needs some tests. These should be placed in a submodule of ``funniest.`` so that they can be imported, but won't pollute the global namespace.:: +The **funniest** package needs some tests. These should be placed in a submodule of ``funniest`` so that they can be imported, but won't pollute the global namespace:: funniest/ funniest/ @@ -12,7 +12,7 @@ The **funniest** package needs some tests. These should be placed in a submodule setup.py ... -The ``test_joke.py`` file is our first test file. Although it's overkill for now, we'll use a ``unittest.TestCase`` subclass to provide infrastructure for later development.:: +The ``test_joke.py`` file is our first test file. Although it's overkill for now, we'll use a ``unittest.TestCase`` subclass to provide infrastructure for later development:: from unittest import TestCase