(self)
| 7158 | maxDiff = None |
| 7159 | |
| 7160 | def setUp(self): |
| 7161 | super().setUp() |
| 7162 | # Ensure color even if ran with NO_COLOR=1 |
| 7163 | self.enterContext(swap_attr(_colorize, 'can_colorize', |
| 7164 | lambda *args, **kwargs: True)) |
| 7165 | self.theme = _colorize.get_theme(force_color=True).argparse |
| 7166 | |
| 7167 | def test_argparse_color(self): |
| 7168 | # Arrange: create a parser with a bit of everything |
nothing calls this directly
no test coverage detected