Sha256: 741a05444c9e9bd9c050a44495bc0ca247f5ebc936fda015f1c5a7ffd5e94e3a
Contents?: true
Size: 579 Bytes
Versions: 185
Compression:
Stored size: 579 Bytes
Contents
module Scan class TestResultParser def parse_result(output) # e.g. ...<testsuites tests='2' failures='1'>... matched = output.scan(/<testsuites\b(?=[^<>]*\s+tests='(\d+)')(?=[^<>]*\s+failures='(\d+)')[^<>]+>/) if matched and matched.length == 1 and matched[0].length == 2 tests = matched[0][0].to_i failures = matched[0][1].to_i return { tests: tests, failures: failures } else UI.error("Couldn't parse the number of tests from the output") return {} end end end end
Version data entries
185 entries across 185 versions & 2 rubygems