1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-11-28 07:46:28 +00:00

Add missing benchmarks

This commit is contained in:
Matan Kushner 2019-04-12 13:17:05 -04:00
parent ab9ba27231
commit 653b9c1d5c
No known key found for this signature in database
GPG Key ID: 4B98C3A8949CA8A4

View File

@ -8,16 +8,16 @@ mod tests {
use starship::{modules, print}; use starship::{modules, print};
use test::Bencher; use test::Bencher;
#[bench] // #[bench]
fn full_prompt_bench(b: &mut Bencher) { // fn full_prompt_bench(b: &mut Bencher) {
b.iter(|| { // b.iter(|| {
let args = App::new("starship") // let args = App::new("starship")
.arg(Arg::with_name("status_code")) // .arg(Arg::with_name("status_code"))
.get_matches_from(vec!["starship", "0"]); // .get_matches_from(vec!["starship", "0"]);
starship::print::prompt(args) // starship::print::prompt(args)
}); // });
} // }
#[bench] #[bench]
fn char_section_bench(b: &mut Bencher) { fn char_section_bench(b: &mut Bencher) {
@ -42,4 +42,28 @@ mod tests {
print::stringify_segment(segment) 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)
});
}
} }