You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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)
|
|
|