blob: 0e58a162bea51cdbf6c8e0d9b9e03df4e9423fe7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
from __future__ import absolute_import
"""Matchers that inspect objects and classes."""
from .haslength import has_length
from .hasproperty import has_property, has_properties
from .hasstring import has_string
__author__ = "Jon Reid"
__copyright__ = "Copyright 2011 hamcrest.org"
__license__ = "BSD, see License.txt"
|