cubicweb/test/data/uppered_rtype.py
author Denis Laxalde <denis.laxalde@logilab.fr>
Thu, 14 Mar 2019 14:38:55 +0100
changeset 12500 ef2168f389f6
parent 11057 0b59724cb3f2
permissions -rw-r--r--
[test] Remove upper bound for cubicweb-localperms Version 0.4.0 does not use a deprecated API that we are planning to drop in forthcoming changesets. This requires changing expected values in unittest_cwconfig.py where we scan install cubes. * In CubicWebConfigurationTC.test_available_cubes(), localperms disappears from the list of expected cubes because this test method will look for new style cubes in located in cubicweb/test/data/libpython/ (we patch pkg_resources.iter_entry_points()) as well as old style cubes installed in $PREFIX/share/cubicweb/cubes; since the new cubicweb-localperms version is new-style, it won't be catched by this method. * In CubicWebConfigurationWithLegacyCubesTC.test_available_cubes(), localperms is still listed, but now with the package name, because this method will simply look at installed cubes whether old or new style.
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'