(self)
| 682 | method_type = "ip" # IPv6 and IPv4 |
| 683 | |
| 684 | def test(self): # type: () -> bool |
| 685 | return check_command("ip") |
| 686 | |
| 687 | def get(self, arg): # type: (str) -> Optional[str] |
| 688 | output = _popen("ip", "neighbor show %s" % arg) |
nothing calls this directly
no test coverage detected