test/data/entities.py
author sylvain.thenault@logilab.fr
Fri, 20 Feb 2009 01:47:43 +0100
branchtls-sprint
changeset 881 18e6c8db7bc5
parent 744 4da6e0f4df2a
child 1473 717dea3362c0
permissions -rw-r--r--
simply test if rset is None...

from cubicweb.entities import AnyEntity, fetch_config

class Personne(AnyEntity):
    """customized class forne Person entities"""
    id = 'Personne'
    fetch_attrs, fetch_order = fetch_config(['nom', 'prenom'])
    rest_attr = 'nom'


class Societe(AnyEntity):
    id = 'Societe'
    fetch_attrs = ('nom',)
    
class Note(AnyEntity):
    id = 'Note'