[pypy-svn] r7907 - pypy/branch/src-pytest/pypy/tool/test

hpk at codespeak.net hpk at codespeak.net
Fri Dec 17 20:00:51 CET 2004


Author: hpk
Date: Fri Dec 17 20:00:51 2004
New Revision: 7907

Added:
   pypy/branch/src-pytest/pypy/tool/test/test_conftest1.py
Log:
added a test for our pypy/conftest.py hacks 


Added: pypy/branch/src-pytest/pypy/tool/test/test_conftest1.py
==============================================================================
--- (empty file)
+++ pypy/branch/src-pytest/pypy/tool/test/test_conftest1.py	Fri Dec 17 20:00:51 2004
@@ -0,0 +1,15 @@
+
+def test_something(space): 
+    assert space.w_None is space.w_None 
+
+def app_test_something(): 
+    assert 42 == 42 
+
+class AppTestSomething: 
+    def test_method(self): 
+        assert 23 == 23 
+    
+class TestSomething:
+    def test_method(self): 
+        assert self.space 
+ 



More information about the Pypy-commit mailing list