1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-11-18 11:05:19 +00:00
starship/benches/benchmarks.rs

46 lines
1.1 KiB
Rust
Raw Normal View History

2019-04-04 20:59:03 +00:00
#![feature(test)]
extern crate test;
#[cfg(test)]
mod tests {
2019-04-05 01:35:24 +00:00
use clap::{App, Arg};
2019-04-04 20:59:03 +00:00
use starship::{modules, print};
use test::Bencher;
#[bench]
fn full_prompt_bench(b: &mut Bencher) {
2019-04-05 01:35:24 +00:00
b.iter(|| {
2019-04-04 20:59:03 +00:00
let args = App::new("starship")
.arg(Arg::with_name("status_code"))
.get_matches_from(vec!["starship", "0"]);
starship::print::prompt(args)
2019-04-04 20:59:03 +00:00
});
}
#[bench]
fn char_section_bench(b: &mut Bencher) {
2019-04-04 20:59:03 +00:00
b.iter(|| {
let args = App::new("starship")
.arg(Arg::with_name("status_code"))
.get_matches_from(vec!["starship", "0"]);
2019-04-05 01:35:24 +00:00
let segment = modules::handle("char", &args);
2019-04-12 17:07:41 +00:00
print::stringify_segment(segment)
});
}
#[bench]
fn dir_section_bench(b: &mut Bencher) {
2019-04-12 17:07:41 +00:00
b.iter(|| {
let args = App::new("starship")
.arg(Arg::with_name("status_code"))
.get_matches_from(vec!["starship", "0"]);
let segment = modules::handle("dir", &args);
2019-04-05 00:33:36 +00:00
print::stringify_segment(segment)
2019-04-04 20:59:03 +00:00
});
}
}