forked from extern/nushell
Update tests.rs
This commit is contained in:
parent
b5ec9e0360
commit
eba3484611
10
src/tests.rs
10
src/tests.rs
@ -393,10 +393,7 @@ fn module_import_uses_internal_command() -> TestResult {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn hides_def() -> TestResult {
|
fn hides_def() -> TestResult {
|
||||||
fail_test(
|
fail_test(r#"def foo [] { "foo" }; hide foo; foo"#, "not found")
|
||||||
r#"def foo [] { "foo" }; hide foo; foo"#,
|
|
||||||
"not found",
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
@ -409,10 +406,7 @@ fn hides_def_then_redefines() -> TestResult {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn hides_def_in_scope_1() -> TestResult {
|
fn hides_def_in_scope_1() -> TestResult {
|
||||||
fail_test(
|
fail_test(r#"def foo [] { "foo" }; do { hide foo; foo }"#, "not found")
|
||||||
r#"def foo [] { "foo" }; do { hide foo; foo }"#,
|
|
||||||
"not found",
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
Loading…
Reference in New Issue
Block a user