Skip to content

Commit 30eb54b

Browse files
committed
Add config_proc_macro to system tests
Also formats unforamatted files in the crate.
1 parent 8abbcad commit 30eb54b

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

config_proc_macro/src/attrs.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,11 @@ fn get_name_value_str_lit(attr: &syn::Attribute, name: &str) -> Option<String> {
6868
match &attr.meta {
6969
syn::Meta::NameValue(syn::MetaNameValue {
7070
path,
71-
value: syn::Expr::Lit(syn::ExprLit { lit: syn::Lit::Str(lit_str), .. }),
71+
value:
72+
syn::Expr::Lit(syn::ExprLit {
73+
lit: syn::Lit::Str(lit_str),
74+
..
75+
}),
7276
..
7377
}) if path.is_ident(name) => Some(lit_str.value()),
7478
_ => None,

src/test/mod.rs

+15-3
Original file line numberDiff line numberDiff line change
@@ -391,12 +391,24 @@ fn self_tests() {
391391
files.push(path);
392392
}
393393
// for crates that need to be included but lies outside src
394-
let external_crates = vec!["check_diff"];
394+
let external_crates = vec!["check_diff", "config_proc_macro"];
395395
for external_crate in external_crates {
396396
let mut path = PathBuf::from(external_crate);
397397
path.push("src");
398-
path.push("main.rs");
399-
files.push(path);
398+
let directory = fs::read_dir(&path).unwrap();
399+
let search_files = directory.filter_map(|file| {
400+
file.ok().and_then(|f| {
401+
let name = f.file_name();
402+
if matches!(name.as_os_str().to_str(), Some("main.rs" | "lib.rs")) {
403+
Some(f.path())
404+
} else {
405+
None
406+
}
407+
})
408+
});
409+
for file in search_files {
410+
files.push(file);
411+
}
400412
}
401413
files.push(PathBuf::from("src/lib.rs"));
402414

0 commit comments

Comments
 (0)