~mwinter4/maus/ckov_0_9_3

« back to all changes in this revision

Viewing changes to third_party/nose-0.11.3/lib/python/nose/__init__.py

  • Committer: tunnell
  • Date: 2010-09-30 13:56:05 UTC
  • Revision ID: tunnell@itchy-20100930135605-wxbkfgy75p0sndk3
add third party

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from nose.core import collector, main, run, run_exit, runmodule
 
2
# backwards compatibility
 
3
from nose.exc import SkipTest, DeprecatedTest
 
4
from nose.tools import with_setup
 
5
 
 
6
__author__ = 'Jason Pellerin'
 
7
__versioninfo__ = (0, 11, 3)
 
8
__version__ = '.'.join(map(str, __versioninfo__))
 
9
 
 
10
__all__ = [
 
11
    'main', 'run', 'run_exit', 'runmodule', 'with_setup',
 
12
    'SkipTest', 'DeprecatedTest', 'collector'
 
13
    ]
 
14
 
 
15