mirror of
https://github.com/starship/starship
synced 2024-11-02 12:57:23 +00:00
Fix up benchmarks
This commit is contained in:
parent
a0e4172602
commit
35e219e1f6
1 changed files with 5 additions and 5 deletions
|
@ -5,7 +5,7 @@ extern crate test;
|
|||
#[cfg(test)]
|
||||
mod tests {
|
||||
use clap::{App, Arg};
|
||||
use starship::{modules, print};
|
||||
use starship::modules;
|
||||
use test::Bencher;
|
||||
|
||||
// #[bench]
|
||||
|
@ -27,7 +27,7 @@ mod tests {
|
|||
.get_matches_from(vec!["starship", "0"]);
|
||||
|
||||
let segment = modules::handle("char", &args);
|
||||
print::stringify_segment(segment)
|
||||
segment.output()
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -39,7 +39,7 @@ mod tests {
|
|||
.get_matches_from(vec!["starship", "0"]);
|
||||
|
||||
let segment = modules::handle("dir", &args);
|
||||
print::stringify_segment(segment)
|
||||
segment.output()
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -51,7 +51,7 @@ mod tests {
|
|||
.get_matches_from(vec!["starship", "0"]);
|
||||
|
||||
let segment = modules::handle("line_break", &args);
|
||||
print::stringify_segment(segment)
|
||||
segment.output()
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -63,7 +63,7 @@ mod tests {
|
|||
.get_matches_from(vec!["starship", "0"]);
|
||||
|
||||
let segment = modules::handle("nodejs", &args);
|
||||
print::stringify_segment(segment)
|
||||
segment.output()
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue