[pypy-svn] r72703 - pypy/branch/fix-64/pypy/rlib/test

arigo at codespeak.net arigo at codespeak.net
Wed Mar 24 13:55:28 CET 2010


Author: arigo
Date: Wed Mar 24 13:55:27 2010
New Revision: 72703

Modified:
   pypy/branch/fix-64/pypy/rlib/test/test_rbigint.py
Log:
An obscure failing test.


Modified: pypy/branch/fix-64/pypy/rlib/test/test_rbigint.py
==============================================================================
--- pypy/branch/fix-64/pypy/rlib/test/test_rbigint.py	(original)
+++ pypy/branch/fix-64/pypy/rlib/test/test_rbigint.py	Wed Mar 24 13:55:27 2010
@@ -193,6 +193,11 @@
                 f2 = rbigint.fromlong(y)
                 assert (x < y) ==  f1.lt(f2)
 
+    def test_ge(self):
+        f1 = rbigint.fromlong(13)
+        f2 = rbigint.fromlong(13)
+        assert f1.ge(f2)
+
     def test_int_conversion(self):
         f1 = rbigint.fromlong(12332)
         f2 = rbigint.fromint(12332)



More information about the Pypy-commit mailing list