mirror of
https://github.com/nushell/nushell.git
synced 2025-05-19 17:30:45 +02:00
11 lines
240 B
Rust
11 lines
240 B
Rust
use crate::repl::tests::{TestResult, test_ide_contains};
|
|
|
|
#[test]
|
|
fn parser_recovers() -> TestResult {
|
|
test_ide_contains(
|
|
"3 + \"bob\"\nlet x = \"fred\"\n",
|
|
&["--ide-check 5"],
|
|
"\"typename\":\"string\"",
|
|
)
|
|
}
|