(self)
| 345 | r"<StaticRoute 'name' \[GET\] /get/") |
| 346 | |
| 347 | def test_static_adds_slash(self): |
| 348 | route = self.router.add_static('/prefix', |
| 349 | os.path.dirname(aiohttp.__file__)) |
| 350 | self.assertEqual('/prefix/', route._prefix) |
| 351 | |
| 352 | def test_static_dont_add_trailing_slash(self): |
| 353 | route = self.router.add_static('/prefix/', |
nothing calls this directly
no test coverage detected