The util to assert macro parsing.
```rust use assert_parse::*; use syn::parse::Parse; use thiserror::Error;
enum InputError { #[error("This is not ident.")] NotIdent, }
struct Input(syn::Ident);
impl Parse for Input {
fn parse(input: syn::parse::ParseStream) -> syn::Result
mod test { use super::; use quote::quote; use rstest::;
type Assert = Assert<Input, InputError>;
#[fixture]
fn assert() -> Assert {
make_assert()
}
#[rstest]
fn error(assert: Assert) {
let input = quote! {1};
assert.error(input, InputError::NotIdent);
}
#[rstest]
fn ok() {
let input = quote! {mock};
assert.ok(input, |i| {
assert_eq!(i.to_string(), "mock".to_string());
});
}
} ```
The crate works very smally, but it makes some bases of codes same. So, this is useful as the templete maker.
The crate does not have used on an example as dependencies. You can choice only using this or joining this and others to develop.
The macro will release to register assert as fixture.
MIT