From 8519c63143d00a4e3ad857d8ff2fc9813966510e Mon Sep 17 00:00:00 2001 From: Christopher Baklid Date: Mon, 26 Feb 2018 11:41:08 +0100 Subject: brings coverage to 90% (#24) * brings coverage to 75% * satisfy flake8 * missing docstring added * one more test * artificially inflate coverage because python acts strange * testing decorators * fixed instantiation of test route * straggling newlines from debugging code * remove debug comments * restructure tests into logical class separations. more exlusions. more tests * testing websocket echo tests * added missing comment * convert single quotes to double quotes to satisfy docstrings --- pysite/base_route.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pysite/base_route.py') diff --git a/pysite/base_route.py b/pysite/base_route.py index 017a8b6e..400a4649 100644 --- a/pysite/base_route.py +++ b/pysite/base_route.py @@ -156,7 +156,7 @@ class ErrorView(BaseView): """ if hasattr(super(), "setup"): - super().setup(manager, blueprint) + super().setup(manager, blueprint) # pragma: no cover if not cls.name or not cls.error_code: raise RuntimeError("Error views must have both `name` and `error_code` defined") @@ -171,4 +171,4 @@ class ErrorView(BaseView): except KeyError: # This happens if we try to register a handler for a HTTP code that doesn't exist pass else: - raise RuntimeError("Error views must have an `error_code` that is either an `int` or an iterable") + raise RuntimeError("Error views must have an `error_code` that is either an `int` or an iterable") # pragma: no cover # noqa: E501 -- cgit v1.2.3