From cce52e14314cf76ced4cc5fe00a3be063c396d26 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Thu, 26 Sep 2013 17:59:56 +0200 Subject: pecantest: remove useless config.py Change-Id: I3370715d12209528fe63d5bd9bb7b7e78c935351 --- tests/pecantest/config.py | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 tests/pecantest/config.py 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 -- cgit v1.2.1