nushell/tests/main.rs
Jakub Žádník 07ac3c3aab
Add Nushell REPL simulator; Fix bug in overlay add (#5478)
* Add Nushell REPL simulator; Fix bug in overlay add

The `nu_repl` function takes an array of strings and processes them as
if they were REPL lines entered one by one. This helps to discover bugs
due to the state changes between the parse and eval stages.

* Fix REPL tests on Windows
2022-05-08 16:09:39 +03:00

10 lines
116 B
Rust

extern crate nu_test_support;
mod nu_repl;
mod overlays;
mod parsing;
mod path;
mod plugins;
mod scope;
mod shell;