[ZPT] CVS: Zope/lib/python/Products/PageTemplates/tests - run.py:1.3 framework.py:NONE
Shane Hathaway
shane@cvs.zope.org
Wed, 12 Jun 2002 15:34:12 -0400
Update of /cvs-repository/Zope/lib/python/Products/PageTemplates/tests
In directory cvs.zope.org:/tmp/cvs-serv22198
Modified Files:
run.py
Removed Files:
framework.py
Log Message:
Removed unused test framework module.
=== Zope/lib/python/Products/PageTemplates/tests/run.py 1.2 => 1.3 ===
+#!/usr/bin/env python
"""Run all tests."""
-import os, sys
-execfile(os.path.join(sys.path[0], 'framework.py'))
+import unittest
def test_suite():
suite = unittest.TestSuite()
@@ -12,4 +11,4 @@
return suite
if __name__ == "__main__":
- main()
+ unittest.main(defaultTest='test_suite')
=== Removed File Zope/lib/python/Products/PageTemplates/tests/framework.py ===