summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2013-08-04 15:42:59 -0500
committerBryan Bishop <kanzure@gmail.com>2013-08-04 15:42:59 -0500
commitdbf6c1eedca7502a065b3b1076180f9ed60992ed (patch)
treeb7c95c314673b817f00ce937e56ff89d65598e86
parent51d7e0e876c9b2603c2158579804d17af037ed0f (diff)
fix setUpClass for a unittest.TestCase
-rw-r--r--tests/tests.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/tests.py b/tests/tests.py
index 69780f5..8430eb6 100644
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -94,16 +94,6 @@ import mock
class TestCram(unittest.TestCase):
"this is where i cram all of my unit tests together"
- @classmethod
- def setUpClass(cls):
- global rom
- cls.rom = direct_load_rom()
- rom = cls.rom
-
- @classmethod
- def tearDownClass(cls):
- del cls.rom
-
def test_map_name_cleaner(self):
name = "hello world"
cleaned_name = map_name_cleaner(name)