def test_command_health_check_healthy():
    # Test COMMAND protocol
    with marathon_on_marathon():
        client = marathon.create_client()
        app_def = app()

        assert_app_healthy(client, app_def, command_health_check())
def test_command_health_check_healthy():
    """Tests COMMAND health check"""

    app_def = apps.sleep_app()
    client = marathon.create_client()
    assert_app_healthy(client, app_def, common.command_health_check())
def test_command_health_check_healthy():
    # Test COMMAND protocol
    client = marathon.create_client()
    app_def = app()

    assert_app_healthy(client, app_def, command_health_check())
Exemple #4
0
def test_command_health_check_healthy():
    """Tests COMMAND health check"""

    app_def = apps.sleep_app()
    client = marathon.create_client()
    assert_app_healthy(client, app_def, common.command_health_check())