Test basic remote exec functionality
(self)
| 2089 | proc.wait(timeout=SHORT_TIMEOUT) |
| 2090 | |
| 2091 | def test_remote_exec(self): |
| 2092 | """Test basic remote exec functionality""" |
| 2093 | script = 'print("Remote script executed successfully!")' |
| 2094 | returncode, stdout, stderr = self._run_remote_exec_test(script) |
| 2095 | # self.assertEqual(returncode, 0) |
| 2096 | self.assertIn(b"Remote script executed successfully!", stdout) |
| 2097 | self.assertEqual(stderr, b"") |
| 2098 | |
| 2099 | def test_remote_exec_bytes(self): |
| 2100 | script = 'print("Remote script executed successfully!")' |
nothing calls this directly
no test coverage detected