We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0cf568 commit cf5a78cCopy full SHA for cf5a78c
tests/custom_preprocessors.rs
@@ -43,6 +43,11 @@ fn ask_the_preprocessor_to_blow_up() {
43
let got = md.build();
44
45
assert!(got.is_err());
46
+ let error_message = got.err().unwrap().to_string();
47
+ assert_eq!(
48
+ error_message,
49
+ r#"The "nop-preprocessor" preprocessor exited unsuccessfully with exit status: 1 status"#
50
+ );
51
}
52
53
#[test]
0 commit comments