mirror of
https://github.com/nushell/nushell.git
synced 2024-11-07 09:04:18 +01:00
c4dca5fe03
This PR should close #7147 # Description Merged src/tests into /tests to produce a single binary. ![image](https://github.com/nushell/nushell/assets/94604837/84726469-d447-4619-b6d1-2d1415d0f42e) # User-Facing Changes No user facing changes # Tests + Formatting Moved tests. Tollkit check pr pass. # After Submitting --------- Co-authored-by: Ian Manske <ian.manske@pm.me>
17 lines
237 B
Rust
17 lines
237 B
Rust
extern crate nu_test_support;
|
|
|
|
mod const_;
|
|
mod eval;
|
|
mod hooks;
|
|
mod modules;
|
|
mod overlays;
|
|
mod parsing;
|
|
mod path;
|
|
#[cfg(feature = "plugin")]
|
|
mod plugin_persistence;
|
|
#[cfg(feature = "plugin")]
|
|
mod plugins;
|
|
mod repl;
|
|
mod scope;
|
|
mod shell;
|