Easy creation of hamcrest matchers
Project description
Decorators that simplify the creation of Hamcrest matchers.
From a function (with an optional appropriate docstring), create hamcrest matchers with minimum extra coding.
Examples:
from matchmaker.decorators import match_maker @match_maker def is_even(item): return item % 2 == 0 @match_maker def ends_like(item, data, length=3): "String whose last {1} chars match those for '{0}'" return item.endswith(data[-length:])
You can then use these in your tests as:
assert_that(number, is_even()) assert_that(word, ends_like(other_word, 4))
Errors will display as:
AssertionError: Expected: Is even but: was <3> AssertionError: Expected: String whose last 4 chars match those for 'cello' but: was 'hullo'
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
matchmaker-0.1.0.tar.gz
(1.8 kB
view hashes)