Add missing benchmarks
This commit is contained in:
parent
ab9ba27231
commit
653b9c1d5c
|
@ -8,16 +8,16 @@ mod tests {
|
|||
use starship::{modules, print};
|
||||
use test::Bencher;
|
||||
|
||||
#[bench]
|
||||
fn full_prompt_bench(b: &mut Bencher) {
|
||||
b.iter(|| {
|
||||
let args = App::new("starship")
|
||||
.arg(Arg::with_name("status_code"))
|
||||
.get_matches_from(vec!["starship", "0"]);
|
||||
// #[bench]
|
||||
// fn full_prompt_bench(b: &mut Bencher) {
|
||||
// b.iter(|| {
|
||||
// let args = App::new("starship")
|
||||
// .arg(Arg::with_name("status_code"))
|
||||
// .get_matches_from(vec!["starship", "0"]);
|
||||
|
||||
starship::print::prompt(args)
|
||||
});
|
||||
}
|
||||
// starship::print::prompt(args)
|
||||
// });
|
||||
// }
|
||||
|
||||
#[bench]
|
||||
fn char_section_bench(b: &mut Bencher) {
|
||||
|
@ -42,4 +42,28 @@ mod tests {
|
|||
print::stringify_segment(segment)
|
||||
});
|
||||
}
|
||||
|
||||
#[bench]
|
||||
fn line_break_section_bench(b: &mut Bencher) {
|
||||
b.iter(|| {
|
||||
let args = App::new("starship")
|
||||
.arg(Arg::with_name("status_code"))
|
||||
.get_matches_from(vec!["starship", "0"]);
|
||||
|
||||
let segment = modules::handle("line_break", &args);
|
||||
print::stringify_segment(segment)
|
||||
});
|
||||
}
|
||||
|
||||
#[bench]
|
||||
fn nodejs_section_bench(b: &mut Bencher) {
|
||||
b.iter(|| {
|
||||
let args = App::new("starship")
|
||||
.arg(Arg::with_name("status_code"))
|
||||
.get_matches_from(vec!["starship", "0"]);
|
||||
|
||||
let segment = modules::handle("nodejs", &args);
|
||||
print::stringify_segment(segment)
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue