test/data/uppered_rtype.py
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 21 Jan 2014 17:34:31 +0100
changeset 9445 65d93a4fd11c
parent 6873 2db631a3f205
permissions -rw-r--r--
[multi-sources-removal] Drop pyrorql and zmqrql sources After a few years experementing "true" multi-sources, we're now moving to "copy-based" source à la datafeed. As pyro and zmq sources have no more known customers and the related code is in the way of future refactoring of cubicweb's core, we decided to drop support for those sources without backward compatibility. If you're still using a zmqrql or pyrorql source and you want to upgrade, ask support to move it to datafeed using a pre-3.19 version first. Related to #2919300 (first step)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6873
2db631a3f205 [schema test] fix tests broken by 6861:9d4e11d6e783 (missing data files and not removed deprecated/broken test)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
diff changeset
     1
2db631a3f205 [schema test] fix tests broken by 6861:9d4e11d6e783 (missing data files and not removed deprecated/broken test)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
diff changeset
     2
from yams.buildobjs import RelationDefinition
2db631a3f205 [schema test] fix tests broken by 6861:9d4e11d6e783 (missing data files and not removed deprecated/broken test)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
diff changeset
     3
2db631a3f205 [schema test] fix tests broken by 6861:9d4e11d6e783 (missing data files and not removed deprecated/broken test)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
diff changeset
     4
class ARelation(RelationDefinition):
2db631a3f205 [schema test] fix tests broken by 6861:9d4e11d6e783 (missing data files and not removed deprecated/broken test)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
diff changeset
     5
    subject = 'CWUser'
2db631a3f205 [schema test] fix tests broken by 6861:9d4e11d6e783 (missing data files and not removed deprecated/broken test)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
diff changeset
     6
    object = 'CWGroup'