mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-05-09 17:41:31 +00:00
12 lines
219 B
Python
12 lines
219 B
Python
TEST_HINTER = 'test-hinter'
|
|
HINTS_ALL = ('ALL')
|
|
DEFAULT_URGENCY = 'medium'
|
|
|
|
|
|
class MockObject(object):
|
|
|
|
def __init__(self, **kwargs):
|
|
for key, value in kwargs.items():
|
|
setattr(self, key, value)
|
|
|