dynamic urls not possible
Status: Beta
Brought to you by:
keytonw
puffin only supports static urls for test actions. this
is problematic in the case where an action needs to
visit a url generated during the course of the tests.
this following was done as a hack against the current
puffin source code to allow actions to have dynamic
paths. testaction.py execute method
puffinlogging.frameworkLoggingChannel.debug('Dynamic
URI Processing')
path = self.getPath()
if path.count('$$$') > 0:
path = tokenprocessing.replaceTokens(path,
tokenDictionary)
self.setPath(path)