1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
use codebook::queries::LanguageType; use super::utils::assert_spelling; #[test] fn test_css_location() { let sample_css = r#" .test { color: red; } .testz { color: blue; } "#; assert_spelling(LanguageType::Css, sample_css, &["testz"], &[]); }