()
| 303 | |
| 304 | |
| 305 | def test_ansi_theme() -> None: |
| 306 | style = Style(color="red") |
| 307 | theme = ANSISyntaxTheme({("foo", "bar"): style}) |
| 308 | assert theme.get_style_for_token(("foo", "bar", "baz")) == style |
| 309 | assert theme.get_background_style() == Style() |
| 310 | |
| 311 | |
| 312 | skip_windows_permission_error = pytest.mark.skipif( |
nothing calls this directly
no test coverage detected