From 933d8df28b5bcab9ba65ded236763129dfc6e734 Mon Sep 17 00:00:00 2001 From: thijs snijder <snijder@astron.nl> Date: Tue, 26 Apr 2022 12:49:36 +0200 Subject: [PATCH] removed old test --- .../test/clients/test_mib_loading.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/tangostationcontrol/tangostationcontrol/test/clients/test_mib_loading.py b/tangostationcontrol/tangostationcontrol/test/clients/test_mib_loading.py index 1023ae496..de2f78383 100644 --- a/tangostationcontrol/tangostationcontrol/test/clients/test_mib_loading.py +++ b/tangostationcontrol/tangostationcontrol/test/clients/test_mib_loading.py @@ -16,20 +16,6 @@ class TestMibLoading(base.TestCase): # mib file is in a folder that is in the same folder as this test rel_dir = "SNMP_mib_loading" - - def test_load(self): - """" - This test tests the loading of pymib files. - It does this by trying to load a test pymib file named TEST-MIB.py in /SNMP_pymibs - """ - - # if any of this fails the test is considered unsuccessful - abs_dir = path.dirname(__file__) + self.rel_dir - loader = mib_loader(abs_dir) - loader.load_pymib(self.mib) - - self.assertTrue(True) - def test_content(self): """ This file contains a 1 variable named: testNamedValue with oid "9.8.7.6.5.4.3.2.1" with named values: ("A", 1), ("B", 2), ("C", 3), ("D", 4) @@ -37,7 +23,6 @@ class TestMibLoading(base.TestCase): """ - # same as before abs_dir = path.dirname(__file__) + self.rel_dir loader = mib_loader(abs_dir) loader.load_pymib(self.mib) -- GitLab