Sha256: ea9f803ec201516ddce1a43d0d7ffef3d693c03bebf56915bc7e66ecc94379e6

Contents?: true

Size: 385 Bytes

Versions: 160

Compression:

Stored size: 385 Bytes

Contents

#!/usr/bin/ruby -n
# -*- encoding: binary -*-

BEGIN { $tests = $assertions = $failures = $errors = 0 }

$_ =~ /(\d+) tests, (\d+) assertions, (\d+) failures, (\d+) errors/ or next
$tests += $1.to_i
$assertions += $2.to_i
$failures += $3.to_i
$errors += $4.to_i

END {
  printf("\n%d tests, %d assertions, %d failures, %d errors\n",
         $tests, $assertions, $failures, $errors)
}

Version data entries

160 entries across 160 versions & 14 rubygems

Version Path
unicorn-maintained-6.2.0 test/aggregate.rb
unicorn-6.1.0 test/aggregate.rb
unicorn-6.0.0 test/aggregate.rb
unicorn-5.8.0 test/aggregate.rb
unicorn-5.7.0 test/aggregate.rb
unicorn-5.6.0 test/aggregate.rb
unicorn-5.5.5 test/aggregate.rb
unicorn-5.5.4 test/aggregate.rb
unicorn-5.5.3 test/aggregate.rb
unicorn-5.5.2 test/aggregate.rb
unicorn-5.5.1 test/aggregate.rb
unicorn-5.5.0.1.g6836 test/aggregate.rb
unicorn-5.5.0 test/aggregate.rb
unicorn-5.5.0.pre1 test/aggregate.rb
unicorn-5.4.1 test/aggregate.rb
unicorn-5.4.0 test/aggregate.rb
unicorn-5.3.1 test/aggregate.rb
unicorn-shopify-5.3.0 test/aggregate.rb
unicorn-5.3.0 test/aggregate.rb
unicorn-5.3.0.pre1 test/aggregate.rb