diff options
Diffstat (limited to 'tests/wipy/wlan/wlan.py')
| -rw-r--r-- | tests/wipy/wlan/wlan.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/wipy/wlan/wlan.py b/tests/wipy/wlan/wlan.py index 3d04c9866..9e18f0c4c 100644 --- a/tests/wipy/wlan/wlan.py +++ b/tests/wipy/wlan/wlan.py @@ -44,6 +44,11 @@ scan_r = wifi.scan() print(len(scan_r) > 3) for net in scan_r: if net.ssid == testconfig.wlan_ssid: + # test that the scan results contains the desired params + print(len(net.bssid) == 6) + print(net.channel == None) + print(net.sec == testconfig.wlan_auth[0]) + print(net.rssi < 0) print('Network found') break |
