Test with only stdout results.
(self)
| 87 | |
| 88 | class Test_ipexec_validate(tt.TempFileMixin): |
| 89 | def test_main_path(self): |
| 90 | """Test with only stdout results. |
| 91 | """ |
| 92 | self.mktmp("print('A')\n" |
| 93 | "print('B')\n" |
| 94 | ) |
| 95 | out = "A\nB" |
| 96 | tt.ipexec_validate(self.fname, out) |
| 97 | |
| 98 | def test_main_path2(self): |
| 99 | """Test with only stdout results, expecting windows line endings. |