branch | stable |
changeset 5247 | 3c8f6e6014f4 |
parent 5229 | 67dbd07a05f3 |
child 5249 | 842a40cade9a |
child 5268 | b4bb59824d72 |
--- a/devtools/testlib.py Wed Apr 14 10:31:09 2010 +0200 +++ b/devtools/testlib.py Wed Apr 14 16:26:02 2010 +0200 @@ -492,9 +492,9 @@ def app_publish(self, req, path='view'): return self.app.publish(path, req) - def ctrl_publish(self, req): + def ctrl_publish(self, req, ctrl='edit'): """call the publish method of the edit controller""" - ctrl = self.vreg['controllers'].select('edit', req) + ctrl = self.vreg['controllers'].select(ctrl, req) try: result = ctrl.publish() req.cnx.commit()