← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] ~cjwatson/launchpad:remove-webapp-tests-__init__ into launchpad:master

 

Colin Watson has proposed merging ~cjwatson/launchpad:remove-webapp-tests-__init__ into launchpad:master.

Commit message:
Remove lib/lp/services/webapp/tests/test___init__.py

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/394404

It runs doctests in lib/lp/services/webapp/__init__.py, but that file hasn't contained any doctests since 2008.
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of ~cjwatson/launchpad:remove-webapp-tests-__init__ into launchpad:master.
diff --git a/lib/lp/services/webapp/tests/test___init__.py b/lib/lp/services/webapp/tests/test___init__.py
deleted file mode 100644
index ab0961d..0000000
--- a/lib/lp/services/webapp/tests/test___init__.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 2009 Canonical Ltd.  This software is licensed under the
-# GNU Affero General Public License version 3 (see the file LICENSE).
-
-__metaclass__ = type
-
-from doctest import (
-    DocTestSuite,
-    ELLIPSIS,
-    NORMALIZE_WHITESPACE,
-    )
-
-
-def test_suite():
-    suite = DocTestSuite(
-            'lp.services.webapp',
-            optionflags=NORMALIZE_WHITESPACE | ELLIPSIS
-            )
-    return suite