diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2010-10-27 22:46:00 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2010-10-27 22:46:00 +0100 |
commit | f7f16586b4b26e5bd198ac53f60ca869754bff13 (patch) | |
tree | 5d529a0d9a37660950b28d6357d2553f7b6cfd5a /pykolab/conf/defaults.py | |
parent | 97baa8876b3969cc663aa25a8e5b1d5adaa49b22 (diff) | |
download | pykolab-f7f16586b4b26e5bd198ac53f60ca869754bff13.tar.gz |
Make sure the configuration lib parts have;
- Configuration file parsing semantics
- Sufficient defaults to handle a test suite
- Configuration item checking semantics
Diffstat (limited to 'pykolab/conf/defaults.py')
-rw-r--r-- | pykolab/conf/defaults.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pykolab/conf/defaults.py b/pykolab/conf/defaults.py index ba0cbce..97b2892 100644 --- a/pykolab/conf/defaults.py +++ b/pykolab/conf/defaults.py @@ -36,3 +36,10 @@ class Defaults(object): 'user_base_dn': "ou=People,%(base_dn)s", 'group_base_dn': "ou=Groups,%(base_dn)s" } + + self.testing = { + 'admin_password': 'secret', + 'admin_login': 'manager', + 'server': '127.0.0.1', + 'users': [] + }
\ No newline at end of file |