C0 code coverage information
Generated on Fri Jul 11 15:55:34 -0700 2008 with rcov 0.7.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
2 require 'openid/yadis/accept'
3
4 module OpenID
5
6 module Yadis
7
8 YADIS_HEADER_NAME = 'X-XRDS-Location'
9 YADIS_CONTENT_TYPE = 'application/xrds+xml'
10
11 # A value suitable for using as an accept header when performing
12 # YADIS discovery, unless the application has special requirements
13 YADIS_ACCEPT_HEADER = generate_accept_header(
14 ['text/html', 0.3],
15 ['application/xhtml+xml', 0.5],
16 [YADIS_CONTENT_TYPE, 1.0]
17 )
18
19 end
20
21 end
Generated using the rcov code coverage analysis tool for Ruby version 0.7.0.