(self, inputs)
| 12 | |
| 13 | class SVCBTestCase(unittest.TestCase): |
| 14 | def check_valid_inputs(self, inputs): |
| 15 | expected = inputs[0] |
| 16 | for text in inputs: |
| 17 | rr = dns.rdata.from_text("IN", "SVCB", text) |
| 18 | new_text = rr.to_text() |
| 19 | self.assertEqual(expected, new_text) |
| 20 | |
| 21 | def check_invalid_inputs(self, inputs): |
| 22 | for text in inputs: |
no test coverage detected