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
1 changed files with 33 additions and 9 deletions

View File

@ -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)
});
}
}