Example #1
0
 def test_add_interface_by_port(self):
     """Add interface to router: myid port=portid."""
     cmd = router.AddInterfaceRouter(test_cli20.MyApp(sys.stdout), None)
     args = ['myid', 'port=portid']
     self._test_add_remove_interface('add', 'port', cmd, args)
Example #2
0
 def test_add_interface_compat(self):
     """Add interface to router: myid subnetid."""
     cmd = router.AddInterfaceRouter(test_cli20.MyApp(sys.stdout), None)
     args = ['myid', 'subnetid']
     self._test_add_remove_interface('add', 'subnet', cmd, args)