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