(self)
| 33 | self.assertTrue(self.cscmdline.idata() == {}) |
| 34 | |
| 35 | def test_is_redundant(self): |
| 36 | self.assertTrue(self.cscmdline.is_redundant() is False) |
| 37 | self.cscmdline.set_redundant() |
| 38 | self.assertTrue(self.cscmdline.is_redundant() is True) |
| 39 | |
| 40 | def test_get_guest_gw(self): |
| 41 | tval = "192.168.1.4" |
nothing calls this directly
no test coverage detected