mirror of
https://github.com/nushell/nushell.git
synced 2024-12-17 04:31:21 +01:00
Fmt
This commit is contained in:
parent
9737d4a614
commit
1e1e12b027
12
src/tests.rs
12
src/tests.rs
@ -445,7 +445,7 @@ fn hide_twice_not_allowed() -> TestResult {
|
||||
fn hides_import_1() -> TestResult {
|
||||
fail_test(
|
||||
r#"module spam { export def foo [] { "foo" } }; use spam; hide spam.foo; foo"#,
|
||||
"not found"
|
||||
"not found",
|
||||
)
|
||||
}
|
||||
|
||||
@ -453,7 +453,7 @@ fn hides_import_1() -> TestResult {
|
||||
fn hides_import_2() -> TestResult {
|
||||
fail_test(
|
||||
r#"module spam { export def foo [] { "foo" } }; use spam; hide spam.*; foo"#,
|
||||
"not found"
|
||||
"not found",
|
||||
)
|
||||
}
|
||||
|
||||
@ -461,7 +461,7 @@ fn hides_import_2() -> TestResult {
|
||||
fn hides_import_3() -> TestResult {
|
||||
fail_test(
|
||||
r#"module spam { export def foo [] { "foo" } }; use spam; hide spam.[foo]; foo"#,
|
||||
"not found"
|
||||
"not found",
|
||||
)
|
||||
}
|
||||
|
||||
@ -469,7 +469,7 @@ fn hides_import_3() -> TestResult {
|
||||
fn hides_import_4() -> TestResult {
|
||||
fail_test(
|
||||
r#"module spam { export def foo [] { "foo" } }; use spam.foo; hide foo; foo"#,
|
||||
"not found"
|
||||
"not found",
|
||||
)
|
||||
}
|
||||
|
||||
@ -477,7 +477,7 @@ fn hides_import_4() -> TestResult {
|
||||
fn hides_import_5() -> TestResult {
|
||||
fail_test(
|
||||
r#"module spam { export def foo [] { "foo" } }; use spam.*; hide foo; foo"#,
|
||||
"not found"
|
||||
"not found",
|
||||
)
|
||||
}
|
||||
|
||||
@ -494,7 +494,7 @@ fn def_twice_should_fail() -> TestResult {
|
||||
fn use_import_after_hide() -> TestResult {
|
||||
run_test(
|
||||
r#"module spam { export def foo [] { "foo" } }; use spam.foo; hide foo; use spam.foo; foo"#,
|
||||
"foo"
|
||||
"foo",
|
||||
)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user