[pypy-svn] r50409 - pypy/branch/ghop-ropes-classes/pypy/rlib/test

cfbolz at codespeak.net cfbolz at codespeak.net
Sun Jan 6 21:54:45 CET 2008


Author: cfbolz
Date: Sun Jan  6 21:54:44 2008
New Revision: 50409

Modified:
   pypy/branch/ghop-ropes-classes/pypy/rlib/test/test_ropewrapper.py
Log:
another failing test


Modified: pypy/branch/ghop-ropes-classes/pypy/rlib/test/test_ropewrapper.py
==============================================================================
--- pypy/branch/ghop-ropes-classes/pypy/rlib/test/test_ropewrapper.py	(original)
+++ pypy/branch/ghop-ropes-classes/pypy/rlib/test/test_ropewrapper.py	Sun Jan  6 21:54:44 2008
@@ -59,6 +59,10 @@
         s1 = self.const("abc")
         s2 = self.const("abc")
         assert hash(s1) == hash(s2)
+    
+    def test_str(self):
+        s1 = self.const("abc")
+        assert str(s1) == "abc"
 
 
 class AbstractRopeTest(object):



More information about the Pypy-commit mailing list