(self)
| 888 | self.assertIsInstance(curses.can_change_color(), bool) |
| 889 | |
| 890 | def test_start_color(self): |
| 891 | if not curses.has_colors(): |
| 892 | self.skipTest('requires colors support') |
| 893 | curses.start_color() |
| 894 | if verbose: |
| 895 | print(f'COLORS = {curses.COLORS}', file=sys.stderr) |
| 896 | print(f'COLOR_PAIRS = {curses.COLOR_PAIRS}', file=sys.stderr) |
| 897 | |
| 898 | @requires_colors |
| 899 | def test_color_content(self): |
nothing calls this directly
no test coverage detected