summaryrefslogtreecommitdiffstats
path: root/contrib/python/PyHamcrest/py3/hamcrest/library/object/__init__.py
blob: e015671d9d8e5d8ce1085b20a7766ed2e890c90c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""Matchers that inspect objects and classes."""

from .haslength import has_length
from .hasproperty import has_properties, has_property
from .hasstring import has_string

__author__ = "Jon Reid"
__copyright__ = "Copyright 2011 hamcrest.org"
__license__ = "BSD, see License.txt"

__all__ = [
    "has_length",
    "has_properties",
    "has_property",
    "has_string",
]