[pypy-svn] r28377 - pypy/dist/pypy/translator/js2

ericvrp at codespeak.net ericvrp at codespeak.net
Tue Jun 6 15:34:57 CEST 2006


Author: ericvrp
Date: Tue Jun  6 15:34:56 2006
New Revision: 28377

Added:
   pypy/dist/pypy/translator/js2/conftest.py   (contents, props changed)
Log:
Added missing conftest to get test_dom.py to work.
Fijal, if this does not resemble your actual conftest, please remove mine.


Added: pypy/dist/pypy/translator/js2/conftest.py
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/translator/js2/conftest.py	Tue Jun  6 15:34:56 2006
@@ -0,0 +1,8 @@
+import py
+
+Option = py.test.Config.Option
+
+option = py.test.Config.addoptions("pypy-js options", 
+        Option('--browser', action="store_true",dest="browser", 
+               default=False, help="run Javascript tests in your default browser"),
+    )



More information about the Pypy-commit mailing list