diff --git a/tests/info.sh b/tests/info.sh index b6c89ae..da5ff48 100644 --- a/tests/info.sh +++ b/tests/info.sh @@ -9,10 +9,17 @@ trap '{ rm -rf "${tmpdir}"; }' 0 2 3 15 # input cp data/example.csv "${tmpdir}/${t}.csv" +# assertion +cat << "DATA" > "${tmpdir}/${t}.assert" +a +b +c +DATA + # action cd "${tmpdir}" || exit 1 orcli import csv "${t}.csv" -orcli info "${t} csv" +orcli info "${t} csv" | jq -r .columns[] > "${t}.output" # test -# grep "${t}" "${t}.output" +diff -u "${t}.assert" "${t}.output"