[pypy-svn] r44448 - pypy/dist/pypy/lang/scheme/test

cfbolz at codespeak.net cfbolz at codespeak.net
Fri Jun 22 23:28:02 CEST 2007


Author: cfbolz
Date: Fri Jun 22 23:28:01 2007
New Revision: 44448

Modified:
   pypy/dist/pypy/lang/scheme/test/test_object.py
Log:
test for jakub


Modified: pypy/dist/pypy/lang/scheme/test/test_object.py
==============================================================================
--- pypy/dist/pypy/lang/scheme/test/test_object.py	(original)
+++ pypy/dist/pypy/lang/scheme/test/test_object.py	Fri Jun 22 23:28:01 2007
@@ -37,3 +37,9 @@
     assert p.cdr.car == c2
     assert p.cdr.cdr.car == c3
     assert p.cdr.cdr.cdr == c4
+
+def test_eval_obj():
+    py.test.skip("in progress")
+    w_num = W_Pair(W_Symbol("+"),
+                   W_Pair(W_Fixnum(4), W_Pair(W_Fixnum(5), W_Nil())))
+    assert w_num.to_number() == 20 



More information about the Pypy-commit mailing list