test/data/schema.py
changeset 7154 5e2f93b88d86
parent 7153 7df83a6d17c0
child 7425 7e9d1d6fcba7
--- a/test/data/schema.py	Thu Mar 31 15:23:50 2011 +0200
+++ b/test/data/schema.py	Thu Mar 31 15:23:52 2011 +0200
@@ -31,7 +31,10 @@
         'Personne', symmetric=True,
         constraints=[
             RQLConstraint('NOT S identity O'),
-            RQLVocabularyConstraint('NOT (S connait P, P nom "toto")')])
+            # conflicting constraints, see cw_unrelated_rql tests in
+            # unittest_entity.py
+            RQLVocabularyConstraint('NOT (S connait P, P nom "toto")'),
+            RQLVocabularyConstraint('S travaille P, P nom "tutu"')])
 
 class Societe(EntityType):
     nom = String()