when one is adding an inline entity for a relation of a single card,
the 'add a new xxx' link disappears. If the user then cancel the addition,
we have to make this link appears back. This is done by giving add new link
id to removeInlineForm.
from cubicweb.devtools.apptest import EnvBasedTC
from cubicweb.web import uicfg
class UICFGTC(EnvBasedTC):
def test_autoform_section_inlined(self):
self.assertEquals(uicfg.autoform_is_inlined.etype_get('CWUser', 'use_email', 'subject', 'EmailAddress'),
True)
self.assertEquals(uicfg.autoform_section.etype_get('CWUser', 'use_email', 'subject', 'EmailAddress'),
'generated')
if __name__ == '__main__':
from logilab.common.testlib import unittest_main
unittest_main()