
Moves unit tests under the ims directory to the root test directory Change-Id: Idc8e356ce74970bacf16c3046b72e57fe9cbe5eb
7 lines
158 B
Python
Executable File
7 lines
158 B
Python
Executable File
from pecan.hooks import PecanHook
|
|
|
|
|
|
class SimpleHookMock(PecanHook):
|
|
def before(self, state):
|
|
setattr(state.request, 'transaction_id', 'some_id')
|