-
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
featA new featureA new feature
Description
Description
a conjecture that checks a value matches a given regular expression pattern.
Context
There is currently support for prefix and suffix matching, but sometimes you need a more complex match.
Possible implementation
assert "foo bar baz" == conjecture.matches_regex(r"\bbar\b")
assert "FOO BAR BAZ" == conjecture.matches_regex(r"\bbar\b", flags=re.IGNORECASE)
Metadata
Metadata
Assignees
Labels
featA new featureA new feature