__init__.py 335 B

123456789
  1. from __future__ import absolute_import
  2. """Matchers that perform numeric comparisons."""
  3. from .iscloseto import close_to
  4. from .ordering_comparison import greater_than, greater_than_or_equal_to, less_than, less_than_or_equal_to
  5. __author__ = "Jon Reid"
  6. __copyright__ = "Copyright 2011 hamcrest.org"
  7. __license__ = "BSD, see License.txt"