Project

teresa

0.0
No commit activity in last 3 years
No release in over 3 years
Parses test run output in various formats.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
~> 2.14
~> 0.7

Runtime

~> 1.5
 Project Readme

Teresa

Teresa is a Test Result Analyzer. Well, it's more of a Test Output Parser, but that doesn't make a great name. It takes the output from a test run and parses it into Ruby objects.

Supported formats:

Usage

require 'teresa'

# parse a string of test output
Teresa.parse(some_input) do |test|
  puts "#{test.name}: #{test.state}"
end

# parse a file
tests = Teresa.parse_file("result.xml")
puts "#{tests.size} tests found"