Test to ensure the HTTP METHOD can be set to accept all on the fly
(self)
| 380 | assert self.route.connect("/url").route["urls"] == ("/url",) |
| 381 | |
| 382 | def test_call(self): |
| 383 | """Test to ensure the HTTP METHOD can be set to accept all on the fly""" |
| 384 | assert self.route.call().route["accept"] == hug.HTTP_METHODS |
| 385 | |
| 386 | def test_http(self): |
| 387 | """Test to ensure the HTTP METHOD can be set to accept all on the fly""" |