zspell 0.3.3

Native Rust library for spellchecking, with a command line interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Runner for the `.test` integration test format

use util::TestManager;

#[test]
fn test_pfx_sfx() {
    let mgr = TestManager::new_from_file("1_pfxsfx.test");
    let dict = mgr.build_dict();
    mgr.check_all(&dict);
}

#[test]
fn test_nosuggest_forbid() {
    let mgr = TestManager::new_from_file("2_nosuggest_forbid.test");
    let dict = mgr.build_dict();
    mgr.check_all(&dict);
}