forked from extern/nushell
* Playground infraestructure (tests, etc) additions. A few things to note: * Nu can be started with a custom configuration file (`nu --config-file /path/to/sample_config.toml`). Useful for mocking the configuration on test runs. * When given a custom configuration file Nu will save any changes to the file supplied appropiately. * The `$nu.config-path` variable either shows the default configuration file (or the custom one, if given) * We can now run end to end tests with finer grained control (currently, since this is baseline work, standard out) This will allow to check things like exit status, assert the contents with a format, etc) * Remove (for another PR)
16 lines
392 B
Rust
16 lines
392 B
Rust
pub mod clear;
|
|
pub mod command;
|
|
pub mod get;
|
|
pub mod path;
|
|
pub mod remove;
|
|
pub mod set;
|
|
pub mod set_into;
|
|
|
|
pub use clear::SubCommand as ConfigClear;
|
|
pub use command::Command as Config;
|
|
pub use get::SubCommand as ConfigGet;
|
|
pub use path::SubCommand as ConfigPath;
|
|
pub use remove::SubCommand as ConfigRemove;
|
|
pub use set::SubCommand as ConfigSet;
|
|
pub use set_into::SubCommand as ConfigSetInto;
|