Files
starship/tests/common.rs
T

28 lines
711 B
Rust
Raw Normal View History

2019-04-15 20:54:52 -04:00
use clap::{App, Arg};
2019-04-19 16:57:14 -04:00
use starship::context::Context;
2019-04-15 20:54:52 -04:00
use starship::modules;
2019-04-19 16:57:14 -04:00
use std::path::PathBuf;
2019-04-15 20:54:52 -04:00
#[allow(dead_code)]
2019-04-19 16:57:14 -04:00
pub fn render_segment<T>(module: &str, path: T) -> String
where
T: Into<PathBuf>,
{
render_segment_with_status(module, path.into(), "0")
2019-04-15 20:54:52 -04:00
}
2019-04-19 16:57:14 -04:00
pub fn render_segment_with_status<T>(module: &str, path: T, status: &str) -> String
where
T: Into<PathBuf>,
{
2019-04-15 20:54:52 -04:00
// 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]);
2019-04-19 16:57:14 -04:00
let context = Context::new_with_dir(args, path.into());
2019-04-15 20:54:52 -04:00
2019-04-19 16:57:14 -04:00
let segment = modules::handle(module, &context);
2019-04-15 20:54:52 -04:00
segment.unwrap().output()
}