[pypy-svn] r63750 - pypy/trunk/pypy/tool/test

fijal at codespeak.net fijal at codespeak.net
Mon Apr 6 23:20:19 CEST 2009


Author: fijal
Date: Mon Apr  6 23:20:19 2009
New Revision: 63750

Modified:
   pypy/trunk/pypy/tool/test/test_pytestsupport.py
Log:
a test for previous checkin, you never know....


Modified: pypy/trunk/pypy/tool/test/test_pytestsupport.py
==============================================================================
--- pypy/trunk/pypy/tool/test/test_pytestsupport.py	(original)
+++ pypy/trunk/pypy/tool/test/test_pytestsupport.py	Mon Apr  6 23:20:19 2009
@@ -148,3 +148,14 @@
 
     def test_two(self):
         import pypy
+
+def test_app_test_blow(testdir):
+    conftestpath.copy(testdir.tmpdir)
+    sorter = testdir.inline_runsource("""
+class AppTestBlow:
+    def test_one(self):
+        exec 'blow'
+    """)
+
+    ev, = sorter.getnamed("itemtestreport")
+    assert ev.failed



More information about the Pypy-commit mailing list