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 d44cbb2 commit 01113e9Copy full SHA for 01113e9
1 file changed
tests/airos/test_ebtables.py
@@ -4,8 +4,21 @@
4
class EbtablesConverter(ConverterTest):
5
backend = EbtablesAirOs
6
7
- def test_ebtables(self):
8
- o = self.backend({})
+ def test_station_none(self):
+ o = self.backend({
9
+ 'interfaces': [
10
+ {
11
+ 'type': 'wireless',
12
+ 'name': 'wlan0',
13
+ 'wireless': {
14
+ 'mode': 'station',
15
+ 'radio': 'ath0',
16
+ 'ssid': 'ubnt',
17
+ 'bssid': '00:11:22:33:44:55',
18
+ }
19
20
+ ]
21
+ })
22
o.to_intermediate()
23
expected = [
24
{
0 commit comments