mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-08-10 23:24:05 +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)
|
|
|