Imported Upstream version 1.1.2
[platform/upstream/python-nose.git] / nose / exc.py
1 """Exceptions for marking tests as skipped or deprecated.
2
3 This module exists to provide backwards compatibility with previous
4 versions of nose where skipped and deprecated tests were core
5 functionality, rather than being provided by plugins. It may be
6 removed in a future release.
7 """
8 from nose.plugins.skip import SkipTest
9 from nose.plugins.deprecated import DeprecatedTest