(self)
| 884 | return (-1, -2**31 - 1, 2**31, -2**63 - 1, 2**63, 2**64) |
| 885 | |
| 886 | def test_has_colors(self): |
| 887 | self.assertIsInstance(curses.has_colors(), bool) |
| 888 | self.assertIsInstance(curses.can_change_color(), bool) |
| 889 | |
| 890 | def test_start_color(self): |
| 891 | if not curses.has_colors(): |
nothing calls this directly
no test coverage detected