def test_neighbors(): with patch( "salt.utils.napalm.get_device", MagicMock(return_value=napalm_test_support.MockNapalmDevice()), ): ret = napalm_bgp.neighbors("test_address") assert ret["out"] == napalm_test_support.TEST_BGP_NEIGHBORS.copy()
def test_neighbors(self): ret = napalm_bgp.neighbors("test_address") assert ret["out"] is napalm_test_support.TEST_BGP_NEIGHBORS