aboutsummaryrefslogtreecommitdiffstats
path: root/app_test.py
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2018-04-16 21:08:18 +0200
committerGravatar Leon Sandøy <[email protected]>2018-04-16 21:08:18 +0200
commit4743f2cd619f6bcfbe6be1dc107b8eb3b9007211 (patch)
treec82dfceb3d59d0e84cda3402d6e675be90b5f8fb /app_test.py
parentWe don't really need this env var anymore. We always want TRACE logging. (diff)
I guess we were testing for log level handling. Removed these tests. We always want TRACE level logging, we can filter in datadog.
Diffstat (limited to 'app_test.py')
-rw-r--r--app_test.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/app_test.py b/app_test.py
index d94aeb5a..1e46a73d 100644
--- a/app_test.py
+++ b/app_test.py
@@ -245,17 +245,6 @@ class StaffEndpoints(SiteTest):
class Utilities(SiteTest):
""" Test cases for internal utility code """
- def test_logging_runtime_error(self):
- """ Check that a wrong value for log level raises runtime error """
- os.environ['LOG_LEVEL'] = 'wrong value'
- try:
- import pysite.__init__ # noqa: F401
- except RuntimeError:
- return True
- finally:
- os.environ['LOG_LEVEL'] = 'info'
- raise Exception('Expected a failure due to wrong LOG_LEVEL attribute name')
-
def test_error_view_runtime_error(self):
""" Check that wrong values for error view setup raises runtime error """
import pysite.base_route