2022-06-18 21:56:31 -07:00
|
|
|
use super::*;
|
2022-01-02 16:51:22 -08:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn infallible_after_quiet() {
|
|
|
|
Test::new()
|
|
|
|
.justfile(
|
|
|
|
"
|
|
|
|
foo:
|
|
|
|
@-exit 1
|
|
|
|
",
|
|
|
|
)
|
|
|
|
.run();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn quiet_after_infallible() {
|
|
|
|
Test::new()
|
|
|
|
.justfile(
|
|
|
|
"
|
|
|
|
foo:
|
|
|
|
-@exit 1
|
|
|
|
",
|
|
|
|
)
|
|
|
|
.run();
|
|
|
|
}
|