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