We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
it (not) matches_regex ...
As an user of test case I want to be able to test whether actual value matches giver regular expression within complex assertions, eg.:
actual
#[test_case("1" => it matches_regex "[0-9]")] fn test_this(s: &str) -> &str { s }
This feature has to be hidden behind feature flag (regex) and require user to manually import https://docs.rs/regex/latest/regex/ crate
regex
The text was updated successfully, but these errors were encountered:
is
it
matches_regex
No branches or pull requests
As an user of test case I want to be able to test whether
actual
value matches giver regular expression within complex assertions, eg.:This feature has to be hidden behind feature flag (
regex
) and require user to manually import https://docs.rs/regex/latest/regex/ crateThe text was updated successfully, but these errors were encountered: