__init__.py 436 B

123456789101112131415
  1. """
  2. Tools for testing
  3. -----------------
  4. nose.tools provides a few convenience functions to make writing tests
  5. easier. You don't have to use them; nothing in the rest of nose depends
  6. on any of these methods.
  7. """
  8. from nose.tools.nontrivial import *
  9. from nose.tools.nontrivial import __all__ as nontrivial_all
  10. from nose.tools.trivial import *
  11. from nose.tools.trivial import __all__ as trivial_all
  12. __all__ = trivial_all + nontrivial_all