6 lines
228 B
Python
6 lines
228 B
Python
def test_switched_network(client_switch_server):
|
|
"""Tests a node can ping another node via the switch."""
|
|
computer, switch, server = client_switch_server
|
|
|
|
assert computer.ping(server.network_interface[1].ip_address)
|