diff options
author | Jason Pellerin <jpellerin@gmail.com> | 2009-04-19 15:55:21 +0000 |
---|---|---|
committer | Jason Pellerin <jpellerin@gmail.com> | 2009-04-19 15:55:21 +0000 |
commit | c83529412f5f94a084ea9a8204ebd1fc951e495b (patch) | |
tree | 2902901c0e28f581c5a4526c75b6f86725c9559e /nose/suite.py | |
parent | dd72d9c871cd2797b6d8badf8e24f5588d179672 (diff) | |
download | nose-c83529412f5f94a084ea9a8204ebd1fc951e495b.tar.gz |
Fixed issue 211
Diffstat (limited to 'nose/suite.py')
-rw-r--r-- | nose/suite.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nose/suite.py b/nose/suite.py index 1f46ea6..400e600 100644 --- a/nose/suite.py +++ b/nose/suite.py @@ -120,9 +120,10 @@ class ContextSuite(LazySuite): 'setUpClass', 'setUpAll') classTeardown = ('teardown_class', 'teardown_all', 'teardownClass', 'teardownAll', 'tearDownClass', 'tearDownAll') - moduleSetup = ('setup_module', 'setupModule', 'setUpModule', 'setup') + moduleSetup = ('setup_module', 'setupModule', 'setUpModule', 'setup', + 'setUp') moduleTeardown = ('teardown_module', 'teardownModule', 'tearDownModule', - 'teardown') + 'teardown', 'tearDown') packageSetup = ('setup_package', 'setupPackage', 'setUpPackage') packageTeardown = ('teardown_package', 'teardownPackage', 'tearDownPackage') |