[Happydoc-checkins] CVS: HappyDoc/happydoclib path.py,1.7,1.8
Brought to you by:
doughellmann,
krlosaqp
From: Doug H. <dou...@us...> - 2002-02-17 13:50:01
|
Update of /cvsroot/happydoc/HappyDoc/happydoclib In directory usw-pr-cvs1:/tmp/cvs-serv7321 Modified Files: path.py Log Message: Sorted imports. Added unittest.main() so these tests can be run individually. Index: path.py =================================================================== RCS file: /cvsroot/happydoc/HappyDoc/happydoclib/path.py,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** path.py 3 Feb 2002 18:48:47 -0000 1.7 --- path.py 17 Feb 2002 13:49:49 -0000 1.8 *************** *** 58,65 **** # Import system modules # ! import string import os import sys ! import glob # --- 58,66 ---- # Import system modules # ! import glob import os + import string import sys ! import unittest # *************** *** 540,541 **** --- 541,546 ---- return + + if __name__ == '__main__': + unittest.main() + |