コード例 #1
0
ファイル: test_custom.py プロジェクト: garfee/blaze
def test_custom_csv_like():
    # A csv-like file is a variable-length strings
    p1 = datashape('n, string')
    p2 = datashape('File')
    assert p1._equal(p2)
コード例 #2
0
ファイル: test_custom.py プロジェクト: garfee/blaze
def test_custom_stream():
    p1 = datashape('Stream, RGBA')
コード例 #3
0
ファイル: test_custom.py プロジェクト: garfee/blaze
def test_custom_type():
    p1 = datashape('800, 600, RGBA')
    assert p1[2] is RGBA

    # We want to build records out of custom type aliases
    p2 = datashape('Record(x=Quaternion, y=Quaternion)')
コード例 #4
0
ファイル: test_custom.py プロジェクト: pelson/blaze
def test_custom_csv_like():
    # A csv-like file is a variable-length strings
    p1 = datashape("n, string")
    p2 = datashape("File")
    assert p1._equal(p2)
コード例 #5
0
ファイル: test_custom.py プロジェクト: pelson/blaze
def test_custom_stream():
    p1 = datashape("Stream, RGBA")
コード例 #6
0
ファイル: test_custom.py プロジェクト: pelson/blaze
def test_custom_type():
    p1 = datashape("800, 600, RGBA")
    assert p1[2] is RGBA

    # We want to build records out of custom type aliases
    p2 = datashape("Record(x=Quaternion, y=Quaternion)")