r46850 - twistedchecker
hawkowl-TA+aISz0psMTMxyoc4vAAJOcrHinNvQL0E9HWUfgJXw@public.gmane.org
| Newsgroups | gmane.comp.python.twisted.commits |
|---|---|
| Message-ID | <[email protected]> |
Author: hawkowl
Date: Wed Feb 24 19:16:14 2016
New Revision: 46850
Modified:
branches/old-versionpy-8219/twisted/test/test_twisted.py
Log:
twistedchecker
Modified: branches/old-versionpy-8219/twisted/test/test_twisted.py
==============================================================================
--- branches/old-versionpy-8219/twisted/test/test_twisted.py (original)
+++ branches/old-versionpy-8219/twisted/test/test_twisted.py Wed Feb 24 19:16:14 2016
@@ -641,7 +641,10 @@
class OldSubprojectDeprecationBase(TestCase):
-
+ """
+ Base L{TestCase} for verifying each former subproject has a deprecated
+ C{__version__} and a removed C{_version.py}.
+ """
subproject = None
def test_deprecated(self):
@@ -669,13 +672,15 @@
-
subprojects = ["mail", "conch", "runner", "web", "words", "names", "news",
"pair"]
for subproject in subprojects:
class SubprojectTestCase(OldSubprojectDeprecationBase):
+ """
+ See L{OldSubprojectDeprecationBase}.
+ """
subproject = subproject
newName = subproject.title() + "VersionDeprecationTests"