示例#1
0
def test_get_shared_graphs():
    graphspace = GraphSpace('*****@*****.**', 'user1')
    # response = graphspace.get_public_graphs(tags=['2015-bioinformatics-xtalk', 'kegg-curated-top-rank-FPs'])
    graphs = graphspace.get_shared_graphs()
    assert all(isinstance(x, Graph) for x in graphs)
    assert len(graphs) >= 0
示例#2
0
def test_get_shared_graphs():
    graphspace = GraphSpace('*****@*****.**', 'user1')
    graphspace.set_api_host('localhost:8000')
    # response = graphspace.get_public_graphs(tags=['2015-bioinformatics-xtalk', 'kegg-curated-top-rank-FPs'])
    response = graphspace.get_shared_graphs()
    assert response is not None and len(response['graphs']) > 0