11 lines
194 B
Python
11 lines
194 B
Python
|
|
class DummyContext:
|
||
|
|
"""Mock context object for testing"""
|
||
|
|
def info(self, message):
|
||
|
|
pass
|
||
|
|
|
||
|
|
def warning(self, message):
|
||
|
|
pass
|
||
|
|
|
||
|
|
def error(self, message):
|
||
|
|
pass
|