ranger/orm/tests/unit/cms/simple_hook_mock.py
Nicholas Jones 57a812acd1 Move services/cms tests to top level test folder
Moves tests out of subfolders so they can be picked up by tox/jenkins

Change-Id: I76369941dff73774f55dd77efd8d396fa9942d7d
2017-08-17 10:03:38 -05:00

7 lines
158 B
Python

from pecan.hooks import PecanHook
class SimpleHookMock(PecanHook):
def before(self, state):
setattr(state.request, 'transaction_id', 'some_id')