def test_jsonrpc_struct(live_server):

    c = HTTPClient(live_server.url + '/all-rpc/')

    result = c.get_struct()
    assert type(result) == dict
    assert result == {
        'x': 1,
        'y': 2,
        'z': 3,
    }