Test with only stdout results, expecting windows line endings.
(self)
| 96 | tt.ipexec_validate(self.fname, out) |
| 97 | |
| 98 | def test_main_path2(self): |
| 99 | """Test with only stdout results, expecting windows line endings. |
| 100 | """ |
| 101 | self.mktmp("print('A')\n" |
| 102 | "print('B')\n" |
| 103 | ) |
| 104 | out = "A\r\nB" |
| 105 | tt.ipexec_validate(self.fname, out) |
| 106 | |
| 107 | def test_exception_path(self): |
| 108 | """Test exception path in exception_validate. |