-
Notifications
You must be signed in to change notification settings - Fork 209
New issue
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
Regex (not)Contains & equals #101
Comments
Obviously, the same may be done for "equals". |
Shouldn't that just be |
There is no |
Of course not. But there's no |
Yeah good name. Did misunderstood that… |
This would be cool |
We now have an
assertContains
, but what I still miss is a RegEx-version of that, so I can (use case:) doassertContainsRegEx "$archiveList" "^prefix1_"
or so and I get check for prefix/suffixes etc.Also this needs to be flexible enough to check the input per line or globally (RegEx stuff, as usual).
Previously I've just used an
assertTrue
and agrep
for that. This works great.The text was updated successfully, but these errors were encountered: