File tree 7 files changed +9
-9
lines changed
7 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 9
9
# handler.enable_save = True
10
10
11
11
# Grand Theft Auto: San Andreas - Multi Theft Auto
12
- ase = ASE ('79.137.97.3' , 22126 )
12
+ ase = ASE (host = '79.137.97.3' , port = 22126 )
13
13
14
14
@pytest .mark .asyncio
15
15
async def test_get_status ():
Original file line number Diff line number Diff line change 9
9
# handler.enable_save = True
10
10
11
11
# Quake 4
12
- doom3 = Doom3 ('88.99.0.7' , 28007 )
12
+ doom3 = Doom3 (host = '88.99.0.7' , port = 28007 )
13
13
14
14
@pytest .mark .asyncio
15
15
async def test_get_info ():
Original file line number Diff line number Diff line change 8
8
handler = ResultHandler (os .path .basename (__file__ )[:- 3 ])
9
9
# handler.enable_save = True
10
10
11
- test = GameSpy2 (host = '158.69.118.94 ' , port = 23000 )
11
+ test = GameSpy2 (host = '89.58.8.211 ' , port = 23000 )
12
12
13
13
@pytest .mark .asyncio
14
14
async def test_get_status ():
Original file line number Diff line number Diff line change 9
9
# handler.enable_save = True
10
10
11
11
# Minecraft
12
- test = Minecraft (host = '51.83.219.117 ' , port = 25565 )
12
+ test = Minecraft (host = '2b2tjb.jp ' , port = 19132 )
13
13
14
14
@pytest .mark .asyncio
15
15
async def test_get_status ():
Original file line number Diff line number Diff line change 6
6
from .result_handler import ResultHandler
7
7
8
8
handler = ResultHandler (os .path .basename (__file__ )[:- 3 ])
9
- handler .enable_save = True
9
+ # handler.enable_save = True
10
10
11
11
# Raknet
12
12
test = Raknet (host = '193.70.94.83' , port = 19132 )
Original file line number Diff line number Diff line change 9
9
# handler.enable_save = True
10
10
11
11
# tf2
12
- source = Source ('91.216.250.14' , 27015 )
12
+ source = Source (host = '91.216.250.14' , port = 27015 )
13
13
14
14
@pytest .mark .asyncio
15
15
async def test_get_info ():
@@ -25,11 +25,11 @@ async def test_get_players():
25
25
async def test_get_rules ():
26
26
result = await source .get_rules ()
27
27
await handler .save_result ('test_get_rules' , result )
28
-
28
+
29
29
@pytest .mark .asyncio
30
30
async def test_remote_console ():
31
31
return
32
-
32
+
33
33
with Source .RemoteConsole ('' , 27015 ) as rcon :
34
34
await rcon .authenticate ('' )
35
35
result = await rcon .send_command ('cvarlist' )
Original file line number Diff line number Diff line change 9
9
# handler.enable_save = True
10
10
11
11
# Counter-Strike 1.5
12
- won = WON ('212.227.190.150' , 27020 )
12
+ won = WON (host = '212.227.190.150' , port = 27020 )
13
13
14
14
@pytest .mark .asyncio
15
15
async def test_get_info ():
You can’t perform that action at this time.
0 commit comments