示例#1
0
def test_services(service):
    ssh = SSH("localhost")
    ssh.sudo(f"systemctl restart {service}")
    is_active = ssh.sudo(f"systemctl is-active {service}")
    assert is_active["out"].rstrip() == "active"
    assert requests.get(url).status_code == 200