blob: 170473ed808bfdbe35c7e910c32024008472a918 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# -*- coding: utf-8 -*-
import os
def get_test_file(*fileparts):
return os.path.join(os.path.dirname(__file__), "testdata", *fileparts)
get_test_file.__test__ = False
class FakeList(object):
# pylint: disable=R0903
# (Too few public methods)
def __init__(self, name):
self.fqdn_listname = name
self.display_name = None
self.subject_prefix = None
class SettingsModule:
KITTYSTORE_URL = "sqlite:"
KITTYSTORE_SEARCH_INDEX = None
MAILMAN_REST_SERVER = "http://localhost:8001"
MAILMAN_API_USER = "testrestuser"
MAILMAN_API_PASS = "testrestpass"
|