[Checkins] SVN: z3c.testsetup/branches/new_markers/src/z3c/testsetup/tests/othercave/pythontest1.py Add a python test with new marker string.

Uli Fouquet uli at gnufix.de
Wed Jan 7 08:55:44 EST 2009


Log message for revision 94579:
  Add a python test with new marker string.

Changed:
  A   z3c.testsetup/branches/new_markers/src/z3c/testsetup/tests/othercave/pythontest1.py

-=-
Added: z3c.testsetup/branches/new_markers/src/z3c/testsetup/tests/othercave/pythontest1.py
===================================================================
--- z3c.testsetup/branches/new_markers/src/z3c/testsetup/tests/othercave/pythontest1.py	                        (rev 0)
+++ z3c.testsetup/branches/new_markers/src/z3c/testsetup/tests/othercave/pythontest1.py	2009-01-07 13:55:44 UTC (rev 94579)
@@ -0,0 +1,17 @@
+"""
+Tests with real TestCase objects.
+
+:unittest: python
+
+"""
+
+import unittest
+
+class TestTest(unittest.TestCase):
+
+    def setUp(self):
+        pass
+
+    def testFoo(self):
+        self.assertEqual(2, 1+1)
+



More information about the Checkins mailing list