
Moves all tests under orm/services/flavor_manager to top level tests folder, and makes changes to get them passing. Change-Id: I6e1bff032a1a90e60529bd0ed42f1c0b822687df
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')
|