(self)
| 1428 | |
| 1429 | class StaticFileWithPathTest(WebTestCase): |
| 1430 | def get_app_kwargs(self): |
| 1431 | return dict( |
| 1432 | static_path=relpath("static"), |
| 1433 | static_handler_args=dict(default_filename="index.html"), |
| 1434 | ) |
| 1435 | |
| 1436 | def get_handlers(self): |
| 1437 | return [("/foo/(.*)", StaticFileHandler, {"path": relpath("templates/")})] |