Skip to content

Commit e0624fe

Browse files
committed
Fix clippy warning
1 parent f7b4b57 commit e0624fe

File tree

6 files changed

+24
-26
lines changed

6 files changed

+24
-26
lines changed

rstest/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#![allow(clippy::test_attr_in_doctest)]
12
//! This crate will help you to write simpler tests by leveraging a software testing concept called
23
//! [test fixtures](https://en.wikipedia.org/wiki/Test_fixture#Software). A fixture is something
34
//! that you can use in your tests to encapsulate a test's dependencies.

rstest_macros/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#![allow(clippy::test_attr_in_doctest)]
12
#![cfg_attr(use_proc_macro_diagnostic, feature(proc_macro_diagnostic))]
23
extern crate proc_macro;
34

rstest_macros/src/parse/fixture.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ impl VisitMut for FixturesFunctionExtractor {
134134
arg.attrs = remain;
135135

136136
let (pos, errors) = parse_attribute_args_just_once(extracted.iter(), "with");
137-
self.1.extend(errors.into_iter());
137+
self.1.extend(errors);
138138
let (resolve, errors) = parse_attribute_args_just_once(extracted.iter(), "from");
139-
self.1.extend(errors.into_iter());
139+
self.1.extend(errors);
140140
if pos.is_some() || resolve.is_some() {
141141
self.0
142142
.push(Fixture::new(name, resolve, pos.unwrap_or_default()))

rstest_macros/src/parse/future.rs

+16-17
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,21 @@ impl FutureFunctionExtractor {
108108
Err(self.errors.into())
109109
}
110110
}
111+
112+
fn compute_arguments_kind(arg: &syn::Attribute) -> Result<FutureArg, syn::Error> {
113+
if matches!(arg.meta, syn::Meta::Path(_)) {
114+
Ok(FutureArg::Define)
115+
} else {
116+
match arg.parse_args::<Option<Ident>>()? {
117+
Some(awt) if awt == format_ident!("awt") => Ok(FutureArg::Await),
118+
None => Ok(FutureArg::Define),
119+
Some(invalid) => Err(syn::Error::new_spanned(
120+
arg.parse_args::<Option<Ident>>()?.into_token_stream(),
121+
format!("Invalid '{invalid}' #[future(...)] arg."),
122+
)),
123+
}
124+
}
125+
}
111126
}
112127

113128
impl VisitMut for FutureFunctionExtractor {
@@ -118,23 +133,7 @@ impl VisitMut for FutureFunctionExtractor {
118133
match extract_argument_attrs(
119134
node,
120135
|a| attr_is(a, "future"),
121-
|arg, name| {
122-
let kind = if matches!(arg.meta, syn::Meta::Path(_)) {
123-
FutureArg::Define
124-
} else {
125-
match arg.parse_args::<Option<Ident>>()? {
126-
Some(awt) if awt == format_ident!("awt") => FutureArg::Await,
127-
None => FutureArg::Define,
128-
Some(invalid) => {
129-
return Err(syn::Error::new_spanned(
130-
arg.parse_args::<Option<Ident>>()?.into_token_stream(),
131-
format!("Invalid '{invalid}' #[future(...)] arg."),
132-
));
133-
}
134-
}
135-
};
136-
Ok((arg, name.clone(), kind))
137-
},
136+
|arg, name| Self::compute_arguments_kind(&arg).map(|kind| (arg, name.clone(), kind)),
138137
)
139138
.collect::<Result<Vec<_>, _>>()
140139
{

rstest_macros/src/parse/rstest/files.rs

-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,6 @@ impl BaseDir for DefaultBaseDir {}
253253

254254
trait GlobResolver {
255255
fn glob(&self, pattern: &str) -> Result<Vec<PathBuf>, String> {
256-
let pattern = pattern;
257256
let globs =
258257
glob(pattern).map_err(|e| format!("glob failed for whole path `{pattern}` due {e}"))?;
259258
globs

rstest_macros/src/refident.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,10 @@ pub trait RemoveMutability {
109109

110110
impl RemoveMutability for FnArg {
111111
fn remove_mutability(&mut self) {
112-
match self {
113-
FnArg::Typed(PatType { pat, .. }) => match pat.as_mut() {
114-
Pat::Ident(ident) => ident.mutability = None,
115-
_ => {}
116-
},
117-
_ => {}
112+
if let FnArg::Typed(PatType { pat, .. }) = self {
113+
if let Pat::Ident(ident) = pat.as_mut() {
114+
ident.mutability = None
115+
}
118116
};
119117
}
120118
}

0 commit comments

Comments
 (0)