nushell/crates/nu-cli/tests/commands/mod.rs
Shaurya Shubham ffe3e2c16b
Rename calc to math eval and allow it to optionally take an expression as an argument (#2195)
* Rename `calc` to `math eval` and allow it to optionally take the expression as an argument

* Moved calc tests to math eval
Also added 2 tests and changed 1 test

* Move calc docs to math eval
2020-07-18 16:11:19 +12:00

56 lines
647 B
Rust

mod alias;
mod append;
mod autoenv;
mod autoenv_trust;
mod autoenv_untrust;
mod cal;
mod cd;
mod compact;
mod cp;
mod default;
mod drop;
mod each;
mod echo;
mod enter;
mod every;
mod first;
mod format;
mod get;
mod group_by;
mod headers;
mod histogram;
mod insert;
mod is_empty;
mod keep;
mod last;
mod lines;
mod ls;
mod math;
mod merge;
mod mkdir;
mod move_;
mod open;
mod parse;
mod prepend;
mod random;
mod range;
mod rename;
mod reverse;
mod rm;
mod save;
mod select;
mod semicolon;
mod skip;
mod sort_by;
mod split_by;
mod split_column;
mod split_row;
mod str_;
mod touch;
mod trim;
mod uniq;
mod update;
mod where_;
mod with_env;
mod wrap;