mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
24 lines
583 B
Rust
24 lines
583 B
Rust
|
#![feature(test)]
|
||
|
|
||
|
extern crate test;
|
||
|
|
||
|
#[bench]
|
||
|
fn load_corrections(b: &mut test::Bencher) {
|
||
|
b.iter(|| scorrect::Corrections::new());
|
||
|
}
|
||
|
|
||
|
#[bench]
|
||
|
fn correction(b: &mut test::Bencher) {
|
||
|
let corrections = scorrect::Corrections::new();
|
||
|
assert_eq!(corrections.correct_str("successs"), Some("successes"));
|
||
|
b.iter(|| corrections.correct_str("successs"));
|
||
|
}
|
||
|
|
||
|
#[bench]
|
||
|
fn no_correction(b: &mut test::Bencher) {
|
||
|
let corrections = scorrect::Corrections::new();
|
||
|
assert_eq!(corrections.correct_str("success"), None);
|
||
|
b.iter(|| corrections.correct_str("success"));
|
||
|
}
|
||
|
|