Add basic benchmarks
This commit is contained in:
parent
7136059dcd
commit
52a529c627
|
@ -1,3 +1,5 @@
|
|||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
[[package]]
|
||||
name = "ansi_term"
|
||||
version = "0.11.0"
|
||||
|
|
|
@ -0,0 +1,45 @@
|
|||
#![feature(test)]
|
||||
|
||||
extern crate test;
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use starship::{modules, print};
|
||||
use test::Bencher;
|
||||
use clap::{App, Arg};
|
||||
|
||||
#[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)
|
||||
});
|
||||
}
|
||||
|
||||
#[bench]
|
||||
fn char_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("char", &args);
|
||||
print::print_segment(segment)
|
||||
});
|
||||
}
|
||||
|
||||
#[bench]
|
||||
fn dir_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("dir", &args);
|
||||
print::print_segment(segment)
|
||||
});
|
||||
}
|
||||
}
|
|
@ -0,0 +1,2 @@
|
|||
pub mod modules;
|
||||
pub mod print;
|
|
@ -1,6 +1,5 @@
|
|||
#[macro_use]
|
||||
extern crate clap;
|
||||
extern crate ansi_term;
|
||||
|
||||
mod modules;
|
||||
mod print;
|
||||
|
|
|
@ -11,7 +11,7 @@ pub fn prompt(args: ArgMatches) {
|
|||
}
|
||||
}
|
||||
|
||||
fn print_segment(segment: Segment) {
|
||||
pub fn print_segment(segment: Segment) {
|
||||
let Segment {
|
||||
prefix,
|
||||
value,
|
||||
|
|
Loading…
Reference in New Issue