nushell/crates/nu-cli/tests/commands/mod.rs
Joseph T. Lyons bc9cc75c8a
Minor Math Sum Additions (#2007)
* Move sum tests into math directory

* Move sum documentation over to math documentation

One sum example already existed in the math examples and a few of the others were outdated and didn't work, so I only moved one over, and updated their output

* Remove no-longer-in-use mod statement
2020-06-20 06:00:18 +12:00

54 lines
617 B
Rust

mod alias;
mod append;
mod cal;
mod calc;
mod cd;
mod compact;
mod cp;
mod default;
mod drop;
mod each;
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 keep_until;
mod keep_while;
mod last;
mod lines;
mod ls;
mod math;
mod merge;
mod mkdir;
mod mv;
mod open;
mod parse;
mod prepend;
mod range;
mod rename;
mod reverse;
mod rm;
mod save;
mod select;
mod semicolon;
mod skip_until;
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;