1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-10-03 23:53:07 +00:00
starship/tests/common.rs

28 lines
709 B
Rust
Raw Normal View History

use clap::{App, Arg};
use starship::context::Context;
use starship::modules;
use std::path::PathBuf;
#[allow(dead_code)]
2019-05-01 20:34:24 +00:00
pub fn render_module<T>(module: &str, path: T) -> String
where
T: Into<PathBuf>,
{
2019-05-01 20:34:24 +00:00
render_module_with_status(module, path.into(), "0")
}
2019-05-01 20:34:24 +00:00
pub fn render_module_with_status<T>(module: &str, path: T, status: &str) -> String
where
T: Into<PathBuf>,
{
// Create an `Arg` with status_code of "0"
let args = App::new("starship")
.arg(Arg::with_name("status_code"))
.get_matches_from(vec!["starship", status]);
let context = Context::new_with_dir(args, path.into());
2019-05-01 20:34:24 +00:00
let module = modules::handle(module, &context);
2019-05-01 20:34:24 +00:00
module.unwrap().to_string()
}