nushell/crates/nu-command/tests/commands/let_.rs

16 lines
274 B
Rust
Raw Normal View History

use nu_test_support::{nu, pipeline};
#[test]
fn let_parse_error() {
let actual = nu!(
cwd: ".", pipeline(
r#"
let in = 3
"#
));
assert!(actual
.err
.contains("'in' is the name of a builtin Nushell variable"));
}