diff -r 000000000000 -r b97547f5f1fa goa/test/data/schema.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/goa/test/data/schema.py Wed Nov 05 15:52:50 2008 +0100 @@ -0,0 +1,11 @@ + + +class YamsEntity(EntityType): + if 'Blog' in defined_types and 'Article' in defined_types: + ambiguous_relation = SubjectRelation(('Blog', 'Article')) + if 'Blog' in defined_types: + inlined_relation = SubjectRelation('Blog', cardinality='?*') + +class inlined_relation(RelationType): + inlined = True +