More tests, filtering iterator, cleanup

This commit is contained in:
2022-10-31 02:58:34 +01:00
parent d0956f851c
commit fd2767b642
14 changed files with 340 additions and 21 deletions

View File

@ -0,0 +1,6 @@
"a";"b"
1;a
2;b
3;c
4;d
5;e
1 a b
2 1 a
3 2 b
4 3 c
5 4 d
6 5 e

View File

@ -0,0 +1,7 @@
[
{ "a": 1, "b": "a" },
{ "a": 2, "b": "b" },
{ "a": 3, "b": "c" },
{ "a": 4, "b": "d" },
{ "a": 5, "b": "e" }
]

View File

@ -0,0 +1,10 @@
{
"datasets": {
"csv": {
"filename": "data/data.csv"
},
"json": {
"filename": "data/data.json"
}
}
}