mirror of
https://github.com/nushell/nushell
synced 2024-11-15 17:27:58 +00:00
03667bdf8c
# Description Fixes #12423 where changes to mutable variables are not properly persisted after a REPL entry.
9 lines
230 B
Rust
9 lines
230 B
Rust
use nu_test_support::{nu, nu_repl_code};
|
|
use pretty_assertions::assert_eq;
|
|
|
|
#[test]
|
|
fn mut_variable() {
|
|
let lines = &["mut x = 0", "$x = 1", "$x"];
|
|
let actual = nu!(nu_repl_code(lines));
|
|
assert_eq!(actual.out, "1");
|
|
}
|