(self)
| 41 | return fdpexpect.fdspawn(socket.fileno(), timeout=timeout, use_poll=use_poll) |
| 42 | |
| 43 | def test_not_int(self): |
| 44 | with self.assertRaises(pexpect.ExceptionPexpect): |
| 45 | session = fdpexpect.fdspawn('bogus', timeout=10) |
| 46 | |
| 47 | def test_not_file_descriptor(self): |
| 48 | with self.assertRaises(pexpect.ExceptionPexpect): |
nothing calls this directly
no test coverage detected