1
1
import unittest
2
- import wifi_hotspot_autoconnect as wifi
2
+ import library . hotspot_wrapper as wifi
3
3
4
4
5
5
class Test_Wifi_Hotspot (unittest .TestCase ):
@@ -8,19 +8,19 @@ def test_hotspot_exists(self):
8
8
self .assertTrue (wifi .hotspot_exists ())
9
9
10
10
def test_hotspot_autoconnect_value (self ):
11
- self .assertIn (wifi .autoconnect_status (), {True , False })
11
+ self .assertIn (wifi .status_hotspot_autoconnect (), {True , False })
12
12
13
13
def test_hotspot_set_autoconnect_true (self ):
14
- wifi .autoconnect_set (True )
15
- self .assertTrue (wifi .autoconnect_status ())
14
+ wifi .set_autoconnect (True )
15
+ self .assertTrue (wifi .status_hotspot_autoconnect ())
16
16
17
17
def test_hotspot_set_autoconnect_false (self ):
18
- wifi .autoconnect_set (False )
19
- self .assertFalse (wifi .autoconnect_status ())
18
+ wifi .set_autoconnect (False )
19
+ self .assertFalse (wifi .status_hotspot_autoconnect ())
20
20
21
21
def test_hotspot_set_autoconnect_boolean (self ):
22
22
self .test_hotspot_set_autoconnect_true ()
23
23
self .test_hotspot_set_autoconnect_false ()
24
24
25
25
def test_hotspot_set_autoconnect_incorrect (self ):
26
- self .assertRaises (TypeError , wifi .autoconnect_set , None )
26
+ self .assertRaises (TypeError , wifi .set_autoconnect , None )
0 commit comments