summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Danjou <julien@danjou.info>2013-09-26 17:59:56 +0200
committerJulien Danjou <julien@danjou.info>2013-09-26 17:59:56 +0200
commitcce52e14314cf76ced4cc5fe00a3be063c396d26 (patch)
treef3d048c4823cf25a4fa5f6b1454f5bd1c43cb832
parentabcdd7affa4ecde6c6d3ee2fd50f801c02168841 (diff)
downloadwsme-cce52e14314cf76ced4cc5fe00a3be063c396d26.tar.gz
pecantest: remove useless config.py
Change-Id: I3370715d12209528fe63d5bd9bb7b7e78c935351
-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