()
| 200 | |
| 201 | |
| 202 | def test_get_number_styles() -> None: |
| 203 | syntax = Syntax(CODE, "python", theme="monokai", line_numbers=True) |
| 204 | console = Console(color_system="windows") |
| 205 | assert syntax._get_number_styles(console=console) == ( |
| 206 | Style.parse("on #272822"), |
| 207 | Style.parse("dim on #272822"), |
| 208 | Style.parse("not dim on #272822"), |
| 209 | ) |
| 210 | |
| 211 | |
| 212 | def test_get_style_for_token() -> None: |
nothing calls this directly
no test coverage detected