"""TestGears extensions to unittest. TestGears provides automatic discovery of unittest.TestCases and the ability to run tests that are written as simple functions. It generates a standard unittest.TestSuite for use with any of the standard frontends, and provides a distutils command to run tests with zero configuration. """ __version__ = "0.2" __author__ = "Kevin Dangoor" __email__ = "dangoor+testgears@gmail.com" __copyright__ = "Copyright 2005 Kevin Dangoor" __license__ = "MIT" from testgears import command TestCommand = command.TestCommand