1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-05-31 07:30:52 +00:00

Fix up benchmarks

This commit is contained in:
Matan Kushner 2019-04-12 19:13:14 -04:00
parent a0e4172602
commit 35e219e1f6
No known key found for this signature in database
GPG Key ID: 4B98C3A8949CA8A4

View File

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