[pypy-svn] rev 581 - pypy/trunk/src/pypy/interpreter/test

alex at codespeak.net alex at codespeak.net
Tue May 27 17:08:55 CEST 2003


Author: alex
Date: Tue May 27 17:08:55 2003
New Revision: 581

Modified:
   pypy/trunk/src/pypy/interpreter/test/test_interpreter.py
Log:
4 tests out of 4 now passing



Modified: pypy/trunk/src/pypy/interpreter/test/test_interpreter.py
==============================================================================
--- pypy/trunk/src/pypy/interpreter/test/test_interpreter.py	(original)
+++ pypy/trunk/src/pypy/interpreter/test/test_interpreter.py	Tue May 27 17:08:55 2003
@@ -39,19 +39,19 @@
 def g(): return 42''', 'g', [])
         self.assertEquals(x, 42)
 
-    def aatest_trivial_call(self):
+    def test_trivial_call(self):
         x = self.codetest('''
 def f(): return 42
 def g(): return f()''', 'g', [])
         self.assertEquals(x, 42)
 
-    def aatest_trivial_call2(self):
+    def test_trivial_call2(self):
         x = self.codetest('''
 def f(): return 1 + 1
 def g(): return f()''', 'g', [])
         self.assertEquals(x, 2)
 
-    def aatest_print(self):
+    def test_print(self):
         x = self.codetest('''
 def g(): print 10''', 'g', [])
         self.assertEquals(x, None)


More information about the Pypy-commit mailing list