__init__.py 319 B

12345678910
  1. from __future__ import absolute_import
  2. """Matchers that inspect objects and classes."""
  3. from .haslength import has_length
  4. from .hasproperty import has_property, has_properties
  5. from .hasstring import has_string
  6. __author__ = "Jon Reid"
  7. __copyright__ = "Copyright 2011 hamcrest.org"
  8. __license__ = "BSD, see License.txt"