2023-04-28 13:25:44 +02:00
|
|
|
use nu_test_support::nu;
|
2020-04-20 08:41:51 +02:00
|
|
|
use nu_test_support::playground::Playground;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn semicolon_allows_lhs_to_complete() {
|
|
|
|
Playground::setup("create_test_1", |dirs, _sandbox| {
|
|
|
|
let actual = nu!(
|
|
|
|
cwd: dirs.test(),
|
|
|
|
"touch i_will_be_created_semi.txt; echo done"
|
|
|
|
);
|
|
|
|
|
|
|
|
let path = dirs.test().join("i_will_be_created_semi.txt");
|
|
|
|
|
|
|
|
assert!(path.exists());
|
2020-05-07 13:03:43 +02:00
|
|
|
assert_eq!(actual.out, "done");
|
2020-04-20 08:41:51 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn semicolon_lhs_error_stops_processing() {
|
2023-04-28 13:25:44 +02:00
|
|
|
let actual = nu!("where 1 1; echo done");
|
2020-04-20 08:41:51 +02:00
|
|
|
|
2020-05-07 13:03:43 +02:00
|
|
|
assert!(!actual.out.contains("done"));
|
2020-04-20 08:41:51 +02:00
|
|
|
}
|