[pypy-svn] r45406 - pypy/dist/pypy/translator/jvm/test

antocuni at codespeak.net antocuni at codespeak.net
Fri Jul 27 15:57:51 CEST 2007


Author: antocuni
Date: Fri Jul 27 15:57:50 2007
New Revision: 45406

Added:
   pypy/dist/pypy/translator/jvm/test/test_cast.py   (contents, props changed)
Log:
add test for casts in jvm



Added: pypy/dist/pypy/translator/jvm/test/test_cast.py
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/translator/jvm/test/test_cast.py	Fri Jul 27 15:57:50 2007
@@ -0,0 +1,11 @@
+import py
+from pypy.translator.jvm.test.runtest import JvmTest
+from pypy.translator.oosupport.test_template.cast import BaseTestCast
+
+class TestCast(BaseTestCast, JvmTest):
+
+    def test_uint_to_float(self):
+        py.test.skip('fixme!')
+
+    def test_bool_to_float(self):
+        py.test.skip('fixme!')



More information about the Pypy-commit mailing list