Update of /cvsroot/happydoc/HappyDoc3/happydoclib/docset
In directory sc8-pr-cvs1:/tmp/cvs-serv29990/happydoclib/docset
Modified Files:
tests.py
Log Message:
Categorize tests.
Index: tests.py
===================================================================
RCS file: /cvsroot/happydoc/HappyDoc3/happydoclib/docset/tests.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** tests.py 1 Jan 2003 14:06:21 -0000 1.5
--- tests.py 16 Mar 2003 16:26:32 -0000 1.6
***************
*** 68,71 ****
--- 68,74 ----
class TestDocSetBase(unittest.TestCase):
+ PROCTOR_TEST_CATEGORIES = ( 'docset',
+ )
+
def testRequiresWrite(self):
docset = base.DocSetBase(
***************
*** 84,87 ****
--- 87,93 ----
class TestDocSet(unittest.TestCase):
+ PROCTOR_TEST_CATEGORIES = ( 'docset',
+ )
+
def testFilterNames(self):
docset = base.DocSet(
***************
*** 125,128 ****
--- 131,138 ----
class TestMultiFileDocSet(unittest.TestCase):
+
+ PROCTOR_TEST_CATEGORIES = ( 'docset',
+ 'MultiFile',
+ )
def testRequiresWriteTOCFile(self):
|