qsv 0.81.0

* qsv 0.81.0
* qsv: update test

Closes #119593.

Signed-off-by: Rui Chen <rui@chenrui.dev>
Signed-off-by: Sean Molenaar <1484494+SMillerDev@users.noreply.github.com>
Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
master
Rui Chen 2023-01-02 11:26:08 -05:00 committed by BrewTestBot
parent 005f6b9610
commit 91f95872c4
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
1 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
class Qsv < Formula
desc "Ultra-fast CSV data-wrangling toolkit"
homepage "https://github.com/jqnatividad/qsv"
url "https://github.com/jqnatividad/qsv/archive/refs/tags/0.80.0.tar.gz"
sha256 "d806762b3e95d2ceebf350c2c81696528a5f5d599e6c4da01328a963d1d9944e"
url "https://github.com/jqnatividad/qsv/archive/refs/tags/0.81.0.tar.gz"
sha256 "c7e74827f4800df747097e0d6538e6cfc15011393ef57aef827589afb5f7d5a3"
license any_of: ["MIT", "Unlicense"]
head "https://github.com/jqnatividad/qsv.git", branch: "master"
@ -25,9 +25,9 @@ class Qsv < Formula
test do
(testpath/"test.csv").write("first header,second header")
assert_equal <<~EOS, shell_output("#{bin}/qsv stats test.csv")
field,type,sum,min,max,min_length,max_length,mean,stddev,variance,nullcount
first header,NULL,,,,,,,,,0
second header,NULL,,,,,,,,,0
field,type,sum,min,max,range,min_length,max_length,mean,stddev,variance,nullcount
first header,NULL,,,,,,,,,,0
second header,NULL,,,,,,,,,,0
EOS
end
end