aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/vty_test_runner.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/vty_test_runner.py b/tests/vty_test_runner.py
index de1997cd4..707fc5c6a 100644
--- a/tests/vty_test_runner.py
+++ b/tests/vty_test_runner.py
@@ -225,24 +225,6 @@ class TestVTYMSC(TestVTYBase):
res = self.vty.command("show network")
self.assert_(res.startswith('BSC is on Country Code') >= 0)
- def testMeasurementFeed(self):
- self.vty.enable()
- self.vty.command("configure terminal")
- self.vty.command("mncc-int")
-
- res = self.vty.command("write terminal")
- self.assertEquals(res.find('meas-feed scenario'), -1)
-
- self.vty.command("meas-feed scenario bla")
- res = self.vty.command("write terminal")
- self.assert_(res.find('meas-feed scenario bla') > 0)
-
- self.vty.command("meas-feed scenario abcdefghijklmnopqrstuvwxyz01234567890")
- res = self.vty.command("write terminal")
- self.assertEquals(res.find('meas-feed scenario abcdefghijklmnopqrstuvwxyz01234567890'), -1)
- self.assertEquals(res.find('meas-feed scenario abcdefghijklmnopqrstuvwxyz012345'), -1)
- self.assert_(res.find('meas-feed scenario abcdefghijklmnopqrstuvwxyz01234') > 0)
-
def ipa_handle_small(x, verbose = False):
s = data2str(x.recv(4))
if len(s) != 4*2: