Remove bundled subunit.
[obnox/samba/samba-obnox.git] / lib / testtools / testtools / utils.py
1 # Copyright (c) 2008-2010 testtools developers. See LICENSE for details.
2
3 """Utilities for dealing with stuff in unittest.
4
5 Legacy - deprecated - use testtools.testsuite.iterate_tests
6 """
7
8 import warnings
9 warnings.warn("Please import iterate_tests from testtools.testsuite - "
10     "testtools.utils is deprecated.", DeprecationWarning, stacklevel=2)
11
12 from testtools.testsuite import iterate_tests
13