A comparable string / regex object for flexible string comparisons.
Project description
comparable_pattern
A comparable string / regex object for flexible string comparisons.
Useful for making unit tests less brittle without extensive mocking of things like timestamps and hashes which maybe change from one run to another.
Examples
>>> p = compile("foo")
>>> c = ComparablePattern(p)
>>> p == "foo"
False
>>> c == "foo"
True
>>> c == "bar"
False
>>> c = "foo" + ComparablePattern(compile("\d{3}"))
>>> c == "foo"
False
>>> c == "123"
False
>>> c == "foo123"
True
>>> c = ComparablePattern(compile("\d{3}")) + "bar"
>>> c == "bar"
False
>>> c == "123"
False
>>> c == "123bar"
True
>>> c = ComparablePattern(compile("\d{3}")) + ComparablePattern(compile("\w{3}"))
>>> c == "123"
False
>>> c == "abc"
False
>>> c == "123abc"
True
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for comparable_pattern-0.0.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e88c788d1f932ed65090eaa35ad7561fd76dd3e292a9b153f329f7eda9e218a |
|
MD5 | aafabe5159abc4ab4532a7f67da5043d |
|
BLAKE2b-256 | 20799d1f6561bb2b9755a8485d75cb39b9be37f088d1e83351deabc209d4fbe6 |