nushell/tests/main.rs
Jakub Žádník 2cffff0c1b
Allow modules to use other modules (#6162)
* Allow private imports inside modules

Can call `use ...` inside modules now.

* Add more tests

* Add a leak test

* Refactor exportables; Prepare for 'export use'

* Fix description

* Implement 'export use' command

This allows re-exporting module's commands and aliases from another
module.

* Add more tests; Fix import pattern list strings

The import pattern strings didn't trim the surrounding quotes.

* Add ignored test
2022-07-29 11:57:10 +03:00

12 lines
167 B
Rust

extern crate nu_test_support;
mod hooks;
mod modules;
mod nu_repl;
mod overlays;
mod parsing;
mod path;
#[cfg(feature = "plugin")]
mod plugins;
mod scope;
mod shell;