()
| 24 | } |
| 25 | |
| 26 | fn get_css_files() -> Vec<CssFile> { |
| 27 | let mut files = vec![]; |
| 28 | for source_path in glob(CSS_FIXTURES_GLOB).unwrap().flatten() { |
| 29 | files.push(CssFile { |
| 30 | name: source_path.file_stem().unwrap().to_str().unwrap().to_owned(), |
| 31 | source_text: read_to_string(&source_path).unwrap(), |
| 32 | }); |
| 33 | } |
| 34 | files |
| 35 | } |
| 36 | |
| 37 | fn get_query_files() -> Vec<QueryFile> { |
| 38 | let mut files = vec![]; |
no test coverage detected