You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 1014B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. from __future__ import absolute_import
  2. """Library of Matcher implementations."""
  3. from hamcrest.core import *
  4. from hamcrest.library.collection import *
  5. from hamcrest.library.integration import *
  6. from hamcrest.library.number import *
  7. from hamcrest.library.object import *
  8. from hamcrest.library.text import *
  9. __author__ = "Jon Reid"
  10. __copyright__ = "Copyright 2011 hamcrest.org"
  11. __license__ = "BSD, see License.txt"
  12. __all__ = [
  13. 'has_entry',
  14. 'has_entries',
  15. 'has_key',
  16. 'has_value',
  17. 'is_in',
  18. 'empty',
  19. 'has_item',
  20. 'has_items',
  21. 'contains_inanyorder',
  22. 'contains',
  23. 'only_contains',
  24. 'match_equality',
  25. 'matches_regexp',
  26. 'close_to',
  27. 'greater_than',
  28. 'greater_than_or_equal_to',
  29. 'less_than',
  30. 'less_than_or_equal_to',
  31. 'has_length',
  32. 'has_property',
  33. 'has_properties',
  34. 'has_string',
  35. 'equal_to_ignoring_case',
  36. 'equal_to_ignoring_whitespace',
  37. 'contains_string',
  38. 'ends_with',
  39. 'starts_with',
  40. 'string_contains_in_order',
  41. ]