We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ce6262 commit 9477677Copy full SHA for 9477677
2 files changed
tests/airos/mock.py
@@ -101,7 +101,7 @@ class HttpdAirOs(AirOs):
101
]
102
103
104
-class Igmpproxy(AirOs):
+class IgmpproxyAirOs(AirOs):
105
"""
106
Mock backend with converter for igmpproxy
107
tests/airos/test_igmpproxy.py
@@ -0,0 +1,15 @@
1
+from .mock import ConverterTest, IgmpproxyAirOs
2
+
3
4
+class Igmpproxyconverter(ConverterTest):
5
+ backend = IgmpproxyAirOs
6
7
+ def test_ebtables(self):
8
+ o = self.backend({})
9
+ o.to_intermediate()
10
+ expected = [
11
+ {
12
+ 'status': 'disabled',
13
+ },
14
+ ]
15
+ self.assertEqualConfig(o.intermediate_data['igmpproxy'], expected)
0 commit comments