[pypy-svn] r35866 - pypy/dist/pypy/lang/js/test

arigo at codespeak.net arigo at codespeak.net
Mon Dec 18 21:19:34 CET 2006


Author: arigo
Date: Mon Dec 18 21:19:33 2006
New Revision: 35866

Modified:
   pypy/dist/pypy/lang/js/test/test_interp.py
Log:
Move the skip before the (failing) imports.


Modified: pypy/dist/pypy/lang/js/test/test_interp.py
==============================================================================
--- pypy/dist/pypy/lang/js/test/test_interp.py	(original)
+++ pypy/dist/pypy/lang/js/test/test_interp.py	Mon Dec 18 21:19:33 2006
@@ -1,3 +1,5 @@
+import py.test
+py.test.skip("not finished yet")
 
 from pypy.lang.js.astgen import *
 from pypy.lang.js import interpreter
@@ -5,12 +7,10 @@
 from pypy.lang.js.interpreter import ThrowException
 from pypy.lang.js.jsobj import W_Number, W_Object
 from pypy.lang.js.context import ExecutionContext
-import py.test
 
 import sys
 from StringIO import StringIO
 
-py.test.skip("not finished yet")
 
 def parse_d(code):
     return build_interpreter(parse(code))



More information about the Pypy-commit mailing list