nushell/crates/nu-command/src/commands/next.rs

42 lines
867 B
Rust
Raw Normal View History

2019-08-07 19:49:11 +02:00
use crate::prelude::*;
use nu_engine::WholeStreamCommand;
use nu_errors::ShellError;
2019-11-30 01:21:05 +01:00
use nu_protocol::{CommandAction, ReturnSuccess, Signature};
2019-08-07 19:49:11 +02:00
pub struct Next;
impl WholeStreamCommand for Next {
fn name(&self) -> &str {
"n"
}
fn signature(&self) -> Signature {
Signature::build("n")
}
fn usage(&self) -> &str {
"Go to next shell."
}
fn run_with_actions(&self, args: CommandArgs) -> Result<ActionStream, ShellError> {
2021-02-12 11:13:14 +01:00
Ok(next(args))
}
}
fn next(_args: CommandArgs) -> ActionStream {
2021-02-12 11:13:14 +01:00
vec![Ok(ReturnSuccess::Action(CommandAction::NextShell))].into()
2019-08-07 19:49:11 +02:00
}
#[cfg(test)]
mod tests {
use super::Next;
use super::ShellError;
#[test]
fn examples_work_as_expected() -> Result<(), ShellError> {
use crate::examples::test as test_examples;
2021-02-12 11:13:14 +01:00
test_examples(Next {})
}
}