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