mirror of
https://github.com/nushell/nushell
synced 2025-01-25 11:25:21 +00:00
a1f141d18a
* Port camel case and kebab case * Port pascal case * Port snake case and screaming snake case * Cleanup before PR * Add back cell path support for str case commands * Add cell path tests for str case command * Revert "Add cell path tests for str case command" This reverts commit a0906318d95fd2b5e4f8ca42f547a7e4c5db381a. * Add cell path test cases for str case command * Move cell path tests from tests.rs to Examples in each of the command's file Co-authored-by: Stefan Stanciulescu <contact@stefanstanciulescu.com>
11 lines
171 B
Rust
11 lines
171 B
Rust
mod build_string;
|
|
mod format;
|
|
mod size;
|
|
mod split;
|
|
mod str_;
|
|
|
|
pub use build_string::BuildString;
|
|
pub use format::*;
|
|
pub use size::Size;
|
|
pub use split::*;
|
|
pub use str_::*;
|