(self)
| 2508 | |
| 2509 | @unittest.skipUnless(hasattr(os, 'isatty'), 'test needs os.isatty()') |
| 2510 | def test_isatty(self): |
| 2511 | self.assertEqual(os.isatty(os_helper.make_bad_fd()), False) |
| 2512 | |
| 2513 | @unittest.skipUnless(hasattr(os, 'closerange'), 'test needs os.closerange()') |
| 2514 | def test_closerange(self): |
nothing calls this directly
no test coverage detected