[Zope-CVS] CVS: Products/PluggableAuthService/tests - test_PluggableAuthService.py:1.9 test_PropertiedUser.py:1.4 test_UserPropertySheet.py:1.4

Lennart Regebro regebro at nuxeo.com
Mon Sep 13 11:15:01 EDT 2004


Update of /cvs-repository/Products/PluggableAuthService/tests
In directory cvs.zope.org:/tmp/cvs-serv18053

Modified Files:
	test_PluggableAuthService.py test_PropertiedUser.py 
	test_UserPropertySheet.py 
Log Message:
Made tests runnable with test.py.


=== Products/PluggableAuthService/tests/test_PluggableAuthService.py 1.8 => 1.9 ===
--- Products/PluggableAuthService/tests/test_PluggableAuthService.py:1.8	Wed Sep  8 14:01:14 2004
+++ Products/PluggableAuthService/tests/test_PluggableAuthService.py	Mon Sep 13 11:15:01 2004
@@ -1523,3 +1523,8 @@
 
 if __name__ == "__main__":
     unittest.main()
+
+def test_suite():
+    return unittest.TestSuite((
+        unittest.makeSuite( PluggableAuthServiceTests ),
+        ))


=== Products/PluggableAuthService/tests/test_PropertiedUser.py 1.3 => 1.4 ===
--- Products/PluggableAuthService/tests/test_PropertiedUser.py:1.3	Thu Aug 12 11:15:55 2004
+++ Products/PluggableAuthService/tests/test_PropertiedUser.py	Mon Sep 13 11:15:01 2004
@@ -275,3 +275,9 @@
 
 if __name__ == "__main__":
     unittest.main()
+
+def test_suite():
+    return unittest.TestSuite((
+        unittest.makeSuite( PropertiedUserTests ),
+        ))
+    
\ No newline at end of file


=== Products/PluggableAuthService/tests/test_UserPropertySheet.py 1.3 => 1.4 ===
--- Products/PluggableAuthService/tests/test_UserPropertySheet.py:1.3	Thu Aug 12 11:15:55 2004
+++ Products/PluggableAuthService/tests/test_UserPropertySheet.py	Mon Sep 13 11:15:01 2004
@@ -167,3 +167,8 @@
 
 if __name__ == "__main__":
     unittest.main()
+
+def test_suite():
+    return unittest.TestSuite((
+        unittest.makeSuite( UserPropertySheetTests ),
+        ))



More information about the Zope-CVS mailing list