Index: MoinMoin/datastruct/backends/_tests/__init__.py |
=================================================================== |
--- a/MoinMoin/datastruct/backends/_tests/__init__.py |
+++ b/MoinMoin/datastruct/backends/_tests/__init__.py |
@@ -9,7 +9,7 @@ |
""" |
-from pytest import raises |
+from pytest import raises, skip |
from flask import current_app as app |
from flask import g as flaskg |
@@ -77,6 +77,8 @@ |
assert groups.get(u'NotExistingGroup', []) == [] |
def test_groups_with_member(self): |
+ # FIXME: because of something, index already has some groups |
+ #skip('FIXME') |
groups = flaskg.groups |
john_groups = list(groups.groups_with_member(u'John')) |