summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-10-07 07:44:57 +0000
committerGerrit Code Review <review@openstack.org>2013-10-07 07:44:57 +0000
commite3b324e1e45f363d4702d414c04adf7b4f3ed3a9 (patch)
tree0f45879d323fa0c8d02551c8f36a3df95271b556
parent664c214dbf2dd33e8fd6a78ca828c02bb1a91c1c (diff)
parentcce52e14314cf76ced4cc5fe00a3be063c396d26 (diff)
downloadwsme-e3b324e1e45f363d4702d414c04adf7b4f3ed3a9.tar.gz
Merge "pecantest: remove useless config.py"
-rw-r--r--tests/pecantest/config.py45
1 files changed, 0 insertions, 45 deletions
diff --git a/tests/pecantest/config.py b/tests/pecantest/config.py
deleted file mode 100644
index 63dbe2c..0000000
--- a/tests/pecantest/config.py
+++ /dev/null
@@ -1,45 +0,0 @@
-# Server Specific Configurations
-server = {
- 'port': '8080',
- 'host': '0.0.0.0'
-}
-
-# Pecan Application Configurations
-app = {
- 'root': 'test.controllers.root.RootController',
- 'modules': ['test'],
- 'static_root': '%(confdir)s/public',
- 'template_path': '%(confdir)s/test/templates',
- 'debug': True,
- 'errors': {
- 404: '/error/404',
- '__force_dict__': True
- }
-}
-
-logging = {
- 'loggers': {
- 'root' : {'level': 'INFO', 'handlers': ['console']},
- 'test': {'level': 'DEBUG', 'handlers': ['console']}
- },
- 'handlers': {
- 'console': {
- 'level': 'DEBUG',
- 'class': 'logging.StreamHandler',
- 'formatter': 'simple'
- }
- },
- 'formatters': {
- 'simple': {
- 'format': ('%(asctime)s %(levelname)-5.5s [%(name)s]'
- '[%(threadName)s] %(message)s')
- }
- }
-}
-
-# Custom Configurations must be in Python dictionary format::
-#
-# foo = {'bar':'baz'}
-#
-# All configurations are accessible at::
-# pecan.conf