remove-empty-columns regtest

This commit is contained in:
John Kerl 2018-12-08 22:15:59 -05:00
parent ff657dd37b
commit 438b38af70
3 changed files with 11 additions and 0 deletions

View file

@ -562,6 +562,12 @@ a,b,c
4,,6
,8,9
mlr --csv remove-empty-columns ./reg_test/input/remove-empty-columns.csv
a,c,e
1,3,5
2,4,5
3,5,7
================================================================
HEAD/TAIL/ETC.

View file

@ -0,0 +1,4 @@
a,b,c,d,e
1,,3,,5
2,,4,,5
3,,5,,7
1 a b c d e
2 1 3 5
3 2 4 5
4 3 5 7

View file

@ -235,6 +235,7 @@ run_mlr --opprint unsparsify $indir/abixy
run_mlr --opprint unsparsify $indir/abixy-het
run_mlr --csv skip-trivial-records $indir/trivial-records.csv
run_mlr --csv remove-empty-columns $indir/remove-empty-columns.csv
# ----------------------------------------------------------------
announce HEAD/TAIL/ETC.