()
| 66 | |
| 67 | |
| 68 | def test_assert_features(): |
| 69 | method = get_method('nat') |
| 70 | features = method.get_supported_features() |
| 71 | method.assert_features(features) |
| 72 | |
| 73 | features.udp = True |
| 74 | with pytest.raises(Fatal): |
| 75 | method.assert_features(features) |
| 76 | |
| 77 | features.ipv6 = True |
| 78 | with pytest.raises(Fatal): |
| 79 | method.assert_features(features) |
| 80 | |
| 81 | |
| 82 | def test_firewall_command(): |
nothing calls this directly
no test coverage detected