We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57c7cf8 commit ff50adfCopy full SHA for ff50adf
tests/test_web.py
@@ -77,3 +77,8 @@ def test_app_error_in_finish_callbacks(self):
77
'application': app,
78
'message': 'Error in finish callback'}
79
handler.assert_called_once_with(self.loop, exc_info)
80
+
81
+ def test_non_default_router(self):
82
+ router = web.UrlDispatcher()
83
+ app = web.Application(loop=self.loop, router=router)
84
+ self.assertIs(router, app.router)
0 commit comments