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 2b9ca2a commit 9e15b1dCopy full SHA for 9e15b1d
tests/src/lib.rs
@@ -111,12 +111,15 @@ mod tests {
111
112
fn setup() {
113
BUILD.call_once(|| {
114
- Command::new("cargo")
115
- .arg("build")
116
- .output()
117
- .expect("failed to build extension")
118
- .status
119
- .success();
+ assert_eq!(
+ Command::new("cargo")
+ .arg("build")
+ .output()
+ .expect("failed to build extension")
+ .status
120
+ .success(),
121
+ true
122
+ );
123
});
124
}
125
0 commit comments