summaryrefslogtreecommitdiff
path: root/nose/suite.py
diff options
context:
space:
mode:
authorJason Pellerin <jpellerin@gmail.com>2009-04-19 15:55:21 +0000
committerJason Pellerin <jpellerin@gmail.com>2009-04-19 15:55:21 +0000
commitc83529412f5f94a084ea9a8204ebd1fc951e495b (patch)
tree2902901c0e28f581c5a4526c75b6f86725c9559e /nose/suite.py
parentdd72d9c871cd2797b6d8badf8e24f5588d179672 (diff)
downloadnose-c83529412f5f94a084ea9a8204ebd1fc951e495b.tar.gz
Fixed issue 211
Diffstat (limited to 'nose/suite.py')
-rw-r--r--nose/suite.py5
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')