コード例 #1
0
ファイル: test_dash_util.py プロジェクト: tschm/pyweb
def test_table():
    frame = read("price.csv", index_col=0)
    columns, data = frame2table(frame)
    assert columns
    assert data
コード例 #2
0
ファイル: test_dash_util.py プロジェクト: tschm/pyweb
def test_lines():
    frame = read("price.csv", index_col=0)
    assert frame2lines(frame)
コード例 #3
0
ファイル: test_dash_util.py プロジェクト: tschm/pyweb
def test_href():
    frame = read("price.csv", index_col=0)
    assert frame2href(frame)
コード例 #4
0
def price():
    ts = read("price.csv", index_col=0, header=0, parse_dates=True)["A"]
    assert isinstance(ts, pd.Series)
    return ts
コード例 #5
0
def test_reference(client):
    response = get(client=client, url="/whoosh/json").data.decode()
    frame = read("whoosh.csv", index_col=0,
                 header=0)[["content", "group", "path", "title"]]
    pt.assert_frame_equal(
        pd.read_json(response, orient="table")[frame.keys()], frame)
コード例 #6
0
def test_cache():
    prices = read("price.csv", index_col=0, parse_dates=True)
    x = Cache.to_json(frame=prices)
    pt.assert_frame_equal(prices, Cache.read_json(x), check_names=False)