(self)
| 7290 | maxDiff = None |
| 7291 | |
| 7292 | def setUp(self): |
| 7293 | super().setUp() |
| 7294 | # Ensure color even if ran with NO_COLOR=1 |
| 7295 | self.enterContext(swap_attr(_colorize, 'can_colorize', |
| 7296 | lambda *args, **kwargs: True)) |
| 7297 | self.theme = _colorize.get_theme(force_color=True).argparse |
| 7298 | |
| 7299 | def test_argparse_color(self): |
| 7300 | # Arrange: create a parser with a bit of everything |
nothing calls this directly
no test coverage detected