[Zope3-checkins]
SVN: zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sample
Checking in files that I meant to check in before. Hm.
Jim Fulton
jim at zope.com
Fri Jun 24 14:52:48 EDT 2005
Log message for revision 30912:
Checking in files that I meant to check in before. Hm.
Changed:
A zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sample21/sampletests_i.py
A zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sample22/sampletests_i.py
A zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sample23/sampletests_i.py
A zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sampletests_i.py
-=-
Added: zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sample21/sampletests_i.py
===================================================================
--- zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sample21/sampletests_i.py 2005-06-24 17:20:01 UTC (rev 30911)
+++ zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sample21/sampletests_i.py 2005-06-24 18:52:48 UTC (rev 30912)
@@ -0,0 +1,25 @@
+##############################################################################
+#
+# Copyright (c) 2003 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+
+import zope.testing.huh
+
+from zope.testing import doctest
+
+class Test(unittest.TestCase):
+
+ def test(self):
+ self.assertEqual(1,0)
+
+def test_suite():
+ return unittest.makeSuite(Test)
Property changes on: zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sample21/sampletests_i.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Added: zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sample22/sampletests_i.py
===================================================================
--- zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sample22/sampletests_i.py 2005-06-24 17:20:01 UTC (rev 30911)
+++ zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sample22/sampletests_i.py 2005-06-24 18:52:48 UTC (rev 30912)
@@ -0,0 +1,24 @@
+##############################################################################
+#
+# Copyright (c) 2003 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+
+import unittest
+from zope.testing import doctest
+
+class Test(unittest.TestCase):
+
+ def test(self):
+ self.assertEqual(1,0)
+
+def test_suitex():
+ return unittest.makeSuite(Test)
Property changes on: zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sample22/sampletests_i.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Added: zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sample23/sampletests_i.py
===================================================================
--- zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sample23/sampletests_i.py 2005-06-24 17:20:01 UTC (rev 30911)
+++ zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sample23/sampletests_i.py 2005-06-24 18:52:48 UTC (rev 30912)
@@ -0,0 +1,26 @@
+##############################################################################
+#
+# Copyright (c) 2003 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+
+import unittest
+from zope.testing import doctest
+
+class Test(unittest.TestCase):
+
+ def test(self):
+ self.assertEqual(1,0)
+
+ raise TypeError('eek')
+
+def test_suite():
+ return unittest.makeSuite(Test)
Property changes on: zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sample23/sampletests_i.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Added: zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sampletests_i.py
===================================================================
--- zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sampletests_i.py 2005-06-24 17:20:01 UTC (rev 30911)
+++ zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sampletests_i.py 2005-06-24 18:52:48 UTC (rev 30912)
@@ -0,0 +1,24 @@
+##############################################################################
+#
+# Copyright (c) 2003 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+
+importx unittest
+from zope.testing import doctest
+
+class Test(unittest.TestCase):
+
+ def test(self):
+ self.assertEqual(1,0)
+
+def test_suite():
+ return unittest.makeSuite(Test)
Property changes on: zope.testing/trunk/src/zope/testing/testrunner-ex/sample2/sampletests_i.py
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
More information about the Zope3-Checkins
mailing list