Fix #815
This commit is contained in:
parent
3e4dbf93d9
commit
af5a0853bf
2 changed files with 10 additions and 0 deletions
|
|
@ -85,6 +85,13 @@ class BasicFunctionalityTestCase(FlaskTestCase):
|
|||
self.assert_equal(rv.status_code, 405)
|
||||
self.assert_equal(sorted(rv.allow), ['GET', 'HEAD', 'OPTIONS', 'POST'])
|
||||
|
||||
def test_disallow_string_for_allowed_methods(self):
|
||||
app = flask.Flask(__name__)
|
||||
with self.assert_raises(TypeError):
|
||||
@app.route('/', methods='GET POST')
|
||||
def index():
|
||||
return "Hey"
|
||||
|
||||
def test_url_mapping(self):
|
||||
app = flask.Flask(__name__)
|
||||
def index():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue