From: Doug H. <dou...@us...> - 2003-01-01 13:42:39
|
Update of /cvsroot/happydoc/HappyDoc3/TestCases/testScanner/levelOne In directory sc8-pr-cvs1:/tmp/cvs-serv25245/TestCases/testScanner/levelOne Modified Files: ignoreme.py one.py Log Message: Add some code for new tests. Index: ignoreme.py =================================================================== RCS file: /cvsroot/happydoc/HappyDoc3/TestCases/testScanner/levelOne/ignoreme.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ignoreme.py 17 Nov 2002 14:51:44 -0000 1.1 --- ignoreme.py 1 Jan 2003 13:42:35 -0000 1.2 *************** *** 0 **** --- 1,5 ---- + + class IgnoreThisClass: + """This class should usually be ignored. + """ + Index: one.py =================================================================== RCS file: /cvsroot/happydoc/HappyDoc3/TestCases/testScanner/levelOne/one.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** one.py 17 Nov 2002 14:51:44 -0000 1.1 --- one.py 1 Jan 2003 13:42:35 -0000 1.2 *************** *** 0 **** --- 1,9 ---- + + class One: + """Class in levelOne/one.py. + """ + + class AnotherOne: + """Another class in levelOne/one.py. + """ + |