def test_ping_code():
    """Check if we can reach the VM"""
    from calm.dsl.tools import ping

    assert ping("10.51.152.238") is True
def test_ping_code_negative():
    """Check if we fail to reach the VM"""
    from calm.dsl.tools import ping

    assert ping("1.2.3.4") is False
def test_ping_code():
    """Check if we can reach the VM"""
    from calm.dsl.tools import ping

    assert ping(TEST_PC_IP) is True