()
| 24 | ) |
| 25 | |
| 26 | func testFormats() []filetypes.FileSpec { |
| 27 | return []filetypes.FileSpec{ |
| 28 | { |
| 29 | Format: filetypes.FormatTypeCSV, |
| 30 | FormatSpec: csv.CSVSpec{ |
| 31 | SkipHeader: true, |
| 32 | Delimiter: ",", |
| 33 | }, |
| 34 | }, |
| 35 | { |
| 36 | Format: filetypes.FormatTypeJSON, |
| 37 | }, |
| 38 | { |
| 39 | Format: filetypes.FormatTypeParquet, |
| 40 | }, |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | type testSpec struct { |
| 45 | spec.Spec |