1use std::str::FromStr;
2
3▶use crate::extra_checks::{ExtraCheckArg, ExtraCheckKind, ExtraCheckLang, ExtraCheckParseError};
4
5#[test]
· · ·
11 auto: true,
12 if_installed: true,
13▶ lang: ExtraCheckLang::Spellcheck,
14 kind: None,
15 },
· · ·
20 auto: true,
21 if_installed: true,
22▶ lang: ExtraCheckLang::Spellcheck,
23 kind: None,
24 },
· · ·
29 auto: true,
30 if_installed: false,
31▶ lang: ExtraCheckLang::Spellcheck,
32 kind: None,
33 },
· · ·
38 auto: false,
39 if_installed: true,
40▶ lang: ExtraCheckLang::Spellcheck,
41 kind: None,
42 },
+ 11 more matches in this file