nushell/crates/nu-command/tests/commands/mod.rs
Fernando Herrera e94d13da1b
Database commands (#5307)
* database commands

* db commands

* filesystem opens sqlite file

* clippy error

* corrected error in ci file

* removes matrix flag from ci

* flax matrix for clippy

* add conditional compile for tests

* add conditional compile for tests

* correct order of command

* correct error msg

* correct typo
2022-04-24 10:29:21 +01:00

76 lines
899 B
Rust

mod alias;
mod all;
mod any;
mod append;
mod cal;
mod cd;
mod compact;
mod cp;
mod def;
mod default;
mod drop;
mod each;
mod echo;
mod empty;
mod enter;
mod every;
mod find;
mod first;
mod flatten;
mod format;
mod get;
mod group_by;
mod hash_;
mod headers;
mod help;
mod histogram;
mod insert;
mod into_filesize;
mod into_int;
mod last;
mod length;
mod lines;
mod ls;
mod math;
mod merge;
mod mkdir;
mod move_;
mod open;
mod parse;
mod path;
mod prepend;
#[cfg(feature = "database")]
mod query;
mod random;
mod range;
mod reduce;
mod reject;
mod rename;
mod reverse;
mod rm;
mod roll;
mod rotate;
mod run_external;
mod save;
mod select;
mod semicolon;
mod skip;
mod sort_by;
mod source;
mod split_by;
mod split_column;
mod split_row;
mod str_;
mod take;
mod touch;
mod uniq;
mod update;
mod upsert;
mod use_;
mod where_;
#[cfg(feature = "which-support")]
mod which;
mod with_env;
mod wrap;
mod zip;