
Moves tests out of subfolders so they can be picked up by tox/jenkins Change-Id: I76369941dff73774f55dd77efd8d396fa9942d7d
7 lines
158 B
Python
7 lines
158 B
Python
from pecan.hooks import PecanHook
|
|
|
|
|
|
class SimpleHookMock(PecanHook):
|
|
def before(self, state):
|
|
setattr(state.request, 'transaction_id', 'some_id')
|