mirror of https://github.com/mitsuhiko/flask.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
891 B
38 lines
891 B
# -*- coding: utf-8 -*- |
|
""" |
|
tests.subclassing |
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
|
|
|
Test that certain behavior of flask can be customized by |
|
subclasses. |
|
|
|
:copyright: (c) 2014 by Armin Ronacher. |
|
:license: BSD, see LICENSE for more details. |
|
""" |
|
import flask |
|
import unittest |
|
from logging import StreamHandler |
|
|
|
from flask._compat import StringIO |
|
|
|
|
|
def test_suppressed_exception_logging(): |
|
class SuppressedFlask(flask.Flask): |
|
def log_exception(self, exc_info): |
|
pass |
|
|
|
out = StringIO() |
|
app = SuppressedFlask(__name__) |
|
app.logger_name = 'flask_tests/test_suppressed_exception_logging' |
|
app.logger.addHandler(StreamHandler(out)) |
|
|
|
@app.route('/') |
|
def index(): |
|
1 // 0 |
|
|
|
rv = app.test_client().get('/') |
|
assert rv.status_code == 500 |
|
assert b'Internal Server Error' in rv.data |
|
|
|
err = out.getvalue() |
|
assert err == ''
|
|
|