Last change
on this file since 1:421645ee4cd9 was 1:421645ee4cd9, checked in by Francisco de Borja Lopez Rio <borja@…>, 13 years ago |
Moved the source code from src/ to postman/
Added tests (unittests) splitted into one testing module per app source
file (tests/models.py for testing models.py, tests/storage.py for testing
storage.py and so on). Currently only tests for models have been added.
Added a script to run the tests
|
File size:
246 bytes
|
Line | |
---|
1 | # -*- coding: utf-8 -*-
|
---|
2 |
|
---|
3 | import os
|
---|
4 |
|
---|
5 | # The default path for storage files
|
---|
6 | storage_path = os.path.join(os.path.dirname(__file__), 'db')
|
---|
7 |
|
---|
8 | # Set to True to set that, by default, only emails from members
|
---|
9 | # will go into the list
|
---|
10 | private_mailing = True
|
---|
Note:
See
TracBrowser
for help on using the repository browser.