def test_fail_error_format2(): # there exists an error format like "ERROR 22-232: ......." with pytest.raises(SASEGRuntimeError): run_egp(str(SCRIPTDIR / 'test_error_format2.egp'))
def test_fail(): with pytest.raises(SASEGRuntimeError): run_egp(str(fail_egp))
def test_space_in_path(): run_egp(str(space_in_path_egp))
def test_japanese_char_in_path(): run_egp(str(japanese_char_in_path_egp))
def test_success_with_Path_object(): run_egp(success_egp)
def test_success(): run_egp(str(success_egp))