Skip to content

Commit

Permalink
qsv 0.134.0
Browse files Browse the repository at this point in the history
qsv: update test

Signed-off-by: Rui Chen <rui@chenrui.dev>
  • Loading branch information
BrewTestBot authored and chenrui333 committed Sep 10, 2024
1 parent f9d7391 commit 6948890
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Formula/q/qsv.rb
Original file line number Diff line number Diff line change
@@ -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.133.1.tar.gz"
sha256 "f2f59c07ea8d84d527641b6f6c2e1eeff114d04860d2904a2b85361ea62db204"
url "/~https://github.com/jqnatividad/qsv/archive/refs/tags/0.134.0.tar.gz"
sha256 "276b34e830564daf3a7643855628ceda4379291c7818076a8f8648ebc9e345f4"
license any_of: ["MIT", "Unlicense"]
head "/~https://github.com/jqnatividad/qsv.git", branch: "master"

Expand Down Expand Up @@ -32,9 +32,9 @@ def install
test do
(testpath/"test.csv").write("first header,second header")
assert_equal <<~EOS, shell_output("#{bin}/qsv stats test.csv")
field,type,is_ascii,sum,min,max,range,sort_order,min_length,max_length,mean,sem,stddev,variance,cv,nullcount,max_precision,sparsity
first header,NULL,,,,,,,,,,,,,,0,,
second header,NULL,,,,,,,,,,,,,,0,,
field,type,is_ascii,sum,min,max,range,sort_order,min_length,max_length,sum_length,avg_length,mean,sem,stddev,variance,cv,nullcount,max_precision,sparsity
first header,NULL,,,,,,,,,,,,,,,,0,,
second header,NULL,,,,,,,,,,,,,,,,0,,
EOS
end
end

0 comments on commit 6948890

Please sign in to comment.