[pypy-commit] pypy py3k: skip one more test

antocuni noreply at buildbot.pypy.org
Tue Apr 17 17:58:29 CEST 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r54472:bf0e6b700818
Date: 2012-04-17 16:05 +0200
http://bitbucket.org/pypy/pypy/changeset/bf0e6b700818/

Log:	skip one more test

diff --git a/pypy/objspace/std/test/test_stringobject.py b/pypy/objspace/std/test/test_stringobject.py
--- a/pypy/objspace/std/test/test_stringobject.py
+++ b/pypy/objspace/std/test/test_stringobject.py
@@ -1,3 +1,4 @@
+import py
 from pypy.objspace.std import stringobject
 from pypy.objspace.std.stringobject import W_StringObject
 from pypy.conftest import gettestobjspace
@@ -88,6 +89,7 @@
         assert self.space.eq_w(space.getitem(w_str, w_slice), wb('el'))
 
     def test_listview_str(self):
+        py.test.py3k_skip("listview_str not supported yet")
         w_str = self.space.wrap('abcd')
         assert self.space.listview_str(w_str) == list("abcd")
 


More information about the pypy-commit mailing list