Exemple #1
0
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)
Exemple #2
0
def test_custom_stream():
    p1 = datashape('Stream, RGBA')
Exemple #3
0
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)')
Exemple #4
0
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)
Exemple #5
0
def test_custom_stream():
    p1 = datashape("Stream, RGBA")
Exemple #6
0
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)")