1
0
mirror of https://github.com/nushell/nushell.git synced 2025-06-06 10:06:49 +02:00
nibon7 e566a073dc
Exit early when encountering parsing errors ()
# Description
This PR tries to fix  and .
2023-09-05 14:36:37 +02:00

19 lines
336 B
Rust

use nu_test_support::nu;
#[test]
fn source_file_relative_to_file() {
let actual = nu!("{x: 1, x: 2}");
assert!(actual.err.contains("redefined"));
}
#[test]
fn run_file_parse_error() {
let actual = nu!(
cwd: "tests/fixtures/eval",
"nu script.nu"
);
assert!(actual.err.contains("unknown type"));
}