[Zope-Checkins] CVS: Zope/lib/python/Products/PageTemplates/tests - __init__.py:1.2.8.1 testDTMLTests.py:1.7.8.1 testHTMLTests.py:1.14.4.1 testTALES.py:1.5.4.1

Florent Guillaume fg@nuxeo.com
Sun, 15 Sep 2002 18:44:04 -0400


Update of /cvs-repository/Zope/lib/python/Products/PageTemplates/tests
In directory cvs.zope.org:/tmp/cvs-serv25955/Products/PageTemplates/tests

Modified Files:
      Tag: Zope-2_6-i18n-branch
	__init__.py testDTMLTests.py testHTMLTests.py testTALES.py 
Log Message:
Zope-2_6-i18n-branch is a branch off Zope-2_6-branch to integrate TAL
i18n from Zope27. This branch is based at tag Zope-2_6-i18n-base.

This first checkin is simply a direct copy of TAL and PageTemplates
tagged at baseline-for-Zope-2_6-i18n-branch in the Zope27 module, and
adapted to not get ImportErrors on interfaces. All tests pass (except
the usual failure due to expat bugs).



=== Zope/lib/python/Products/PageTemplates/tests/__init__.py 1.2 => 1.2.8.1 ===
--- Zope/lib/python/Products/PageTemplates/tests/__init__.py:1.2	Wed Aug 14 18:17:24 2002
+++ Zope/lib/python/Products/PageTemplates/tests/__init__.py	Sun Sep 15 18:43:34 2002
@@ -34,3 +34,4 @@
         assert aargs == args, "Harness method arguments"
         assert akwargs == kwargs, "Harness method keyword args"
         return result
+    


=== Zope/lib/python/Products/PageTemplates/tests/testDTMLTests.py 1.7 => 1.7.8.1 ===
--- Zope/lib/python/Products/PageTemplates/tests/testDTMLTests.py:1.7	Wed Aug 14 18:17:24 2002
+++ Zope/lib/python/Products/PageTemplates/tests/testDTMLTests.py	Sun Sep 15 18:43:34 2002
@@ -140,3 +140,4 @@
 
 if __name__=='__main__':
     main()
+


=== Zope/lib/python/Products/PageTemplates/tests/testHTMLTests.py 1.14 => 1.14.4.1 ===
--- Zope/lib/python/Products/PageTemplates/tests/testHTMLTests.py:1.14	Tue Sep  3 09:55:59 2002
+++ Zope/lib/python/Products/PageTemplates/tests/testHTMLTests.py	Sun Sep 15 18:43:34 2002
@@ -15,8 +15,7 @@
 
 from Products.PageTemplates.tests import util
 from Products.PageTemplates.PageTemplate import PageTemplate
-import ZODB
-from AccessControl import User, SecurityManager
+from AccessControl import SecurityManager
 from AccessControl.SecurityManagement import noSecurityManager
 
 from Acquisition import Implicit
@@ -130,4 +129,5 @@
     return unittest.makeSuite(HTMLTests, 'check')
 
 if __name__=='__main__':
-    unittest.main(defaultTest='test_suite')
+   main()
+


=== Zope/lib/python/Products/PageTemplates/tests/testTALES.py 1.5 => 1.5.4.1 ===
--- Zope/lib/python/Products/PageTemplates/tests/testTALES.py:1.5	Thu Aug 29 10:00:08 2002
+++ Zope/lib/python/Products/PageTemplates/tests/testTALES.py	Sun Sep 15 18:43:34 2002
@@ -114,4 +114,4 @@
     return unittest.makeSuite(TALESTests)
 
 if __name__=='__main__':
-    unittest.main(defaultTest='test_suite')
+    main()