C0 code coverage information
Generated on Tue May 30 23:34:45 CEST 2006 with rcov 0.5.0
Code reported as executed by Ruby looks like this...
and this: this line is also marked as covered.
Lines considered as run by rcov, but not reported by Ruby, look like this,
and this: these lines were inferred by rcov (using simple heuristics).
Finally, here's a line marked as not executed.
1 # Work around ecto problem
2 module XMLRPC
3 module Convert
4 def self.dateTime(str)
5 if str =~ /^(-?\d\d\d\d)(\d\d)(\d\d)T(\d\d):(\d\d):(\d\d)Z?$/ then
6 a = [$1, $2, $3, $4, $5, $6].collect{|i| i.to_i}
7 XMLRPC::DateTime.new(*a)
8 else
9 raise "wrong dateTime.iso8601 format"
10 end
11 end
12 end
13 end
Generated using the rcov code coverage analysis tool for Ruby version 0.5.0.