Update of /cvsroot/happydoc/HappyDoc
In directory usw-pr-cvs1:/tmp/cvs-serv23608
Modified Files:
test_happydoc.py
Log Message:
Added a basic test for DocBookX formatter.
Index: test_happydoc.py
===================================================================
RCS file: /cvsroot/happydoc/HappyDoc/test_happydoc.py,v
retrieving revision 1.80
retrieving revision 1.81
diff -C2 -d -r1.80 -r1.81
*** test_happydoc.py 3 Feb 2002 21:44:45 -0000 1.80
--- test_happydoc.py 7 Feb 2002 14:23:37 -0000 1.81
***************
*** 196,199 ****
--- 196,208 ----
#
+
+ def testDocBookX(self):
+ assert (not self.runHappyDoc( (os.path.join('TestCases', 'test.py'),),
+ extraArgs=('-F',
+ 'docbookx')
+ )
+ ), 'Full self documentation in DocBookS format output test failed.'
+ return
+
def testHTMLSimple(self):
assert (not self.runHappyDoc( (os.path.join('TestCases', 'test.py'),),
***************
*** 312,316 ****
), 'Full self documentation in DocBookS format output test failed.'
return
-
class OtherWorkingDirTest(HappyDocTestBase):
--- 321,324 ----
|