(self)
| 43 | assert result.name == "agent-terminal.html" |
| 44 | |
| 45 | def test_themes_path_resolves(self): |
| 46 | s = self._server() |
| 47 | result = s._resolve_static("/themes/themes.json") |
| 48 | assert result is not None |
| 49 | assert result.name == "themes.json" |
| 50 | |
| 51 | def test_css_path_resolves(self): |
| 52 | s = self._server() |
nothing calls this directly
no test coverage detected