use crate::prelude::*; use nu_engine::WholeStreamCommand; use nu_errors::ShellError; use nu_protocol::{ReturnSuccess, Signature, UntaggedValue}; pub struct Command; impl WholeStreamCommand for Command { fn name(&self) -> &str { "into" } fn signature(&self) -> Signature { Signature::build("into") } fn usage(&self) -> &str { "Apply into function." } fn run_with_actions(&self, args: CommandArgs) -> Result { Ok(ActionStream::one(ReturnSuccess::value( UntaggedValue::string(get_full_help(&Command, &args.scope)).into_value(Tag::unknown()), ))) } } #[cfg(test)] mod tests { use super::Command; use super::ShellError; #[test] fn examples_work_as_expected() -> Result<(), ShellError> { use crate::examples::test as test_examples; test_examples(Command {}) } }