mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-28 07:46:28 +00:00
Add basic benchmarks
This commit is contained in:
parent
7136059dcd
commit
52a529c627
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -1,3 +1,5 @@
|
|||||||
|
# This file is automatically @generated by Cargo.
|
||||||
|
# It is not intended for manual editing.
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ansi_term"
|
name = "ansi_term"
|
||||||
version = "0.11.0"
|
version = "0.11.0"
|
||||||
|
45
benches/benchmarks.rs
Normal file
45
benches/benchmarks.rs
Normal file
@ -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)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
2
src/lib.rs
Normal file
2
src/lib.rs
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
pub mod modules;
|
||||||
|
pub mod print;
|
@ -1,6 +1,5 @@
|
|||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate clap;
|
extern crate clap;
|
||||||
extern crate ansi_term;
|
|
||||||
|
|
||||||
mod modules;
|
mod modules;
|
||||||
mod print;
|
mod print;
|
||||||
|
@ -11,7 +11,7 @@ pub fn prompt(args: ArgMatches) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn print_segment(segment: Segment) {
|
pub fn print_segment(segment: Segment) {
|
||||||
let Segment {
|
let Segment {
|
||||||
prefix,
|
prefix,
|
||||||
value,
|
value,
|
||||||
|
Loading…
Reference in New Issue
Block a user