Metadata-Version: 1.0
Name: matchmaker
Version: 0.1.0
Summary: Easy creation of hamcrest matchers
Home-page: https://github.com/txels/matchmaker
Author: Carles Barrobés
Author-email: carles@barrobes.com
License: UNKNOWN
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:])
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Testing
