summaryrefslogtreecommitdiff
path: root/tests/pecantest/test/app.py
diff options
context:
space:
mode:
authorJim Rollenhagen <jim@jimrollenhagen.com>2019-09-26 09:43:27 -0400
committerJim Rollenhagen <jim@jimrollenhagen.com>2019-09-26 09:43:27 -0400
commite9c6edfe510f4ed407f8d2d84b4b931a382b48b3 (patch)
tree94bbd6a34bcf09e99f7ae1be88b19960192d6adb /tests/pecantest/test/app.py
parent1d73d6e50411ebc45fb96a6ed3c63ca91a500323 (diff)
downloadwsme-master.tar.gz
Retire github mirror, repo moved to opendevHEADmaster
Diffstat (limited to 'tests/pecantest/test/app.py')
-rw-r--r--tests/pecantest/test/app.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/pecantest/test/app.py b/tests/pecantest/test/app.py
deleted file mode 100644
index 727c357..0000000
--- a/tests/pecantest/test/app.py
+++ /dev/null
@@ -1,15 +0,0 @@
-from pecan import make_app
-from test import model
-
-def setup_app(config):
-
- model.init_model()
-
- return make_app(
- config.app.root,
- static_root = config.app.static_root,
- template_path = config.app.template_path,
- logging = getattr(config, 'logging', {}),
- debug = getattr(config.app, 'debug', False),
- force_canonical = getattr(config.app, 'force_canonical', True)
- )