diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-08-04 15:42:59 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-08-04 15:42:59 -0500 |
commit | dbf6c1eedca7502a065b3b1076180f9ed60992ed (patch) | |
tree | b7c95c314673b817f00ce937e56ff89d65598e86 /tests | |
parent | 51d7e0e876c9b2603c2158579804d17af037ed0f (diff) |
fix setUpClass for a unittest.TestCase
Diffstat (limited to 'tests')
-rw-r--r-- | tests/tests.py | 10 |
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) |