Jldrill Git C0 Coverage Information - RCov

lib/jldrill/model/AboutInfo.rb

Name Total Lines Lines of Code Total Coverage Code Coverage
lib/jldrill/model/AboutInfo.rb 35 28
28.57%
21.43%

Key

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.

Coverage Details

1 require 'jldrill/Version'
2 
3 module JLDrill
4 
5     # Information about JLDrill. 
6     class AboutInfo
7         attr_reader :name, :version, :copyright, :license,
8                     :comments, :website, :authors
9                     
10         def initialize
11             @authors = ["Mike Charlton"]
12 		    @name = "JLDrill"
13 		    @version = JLDrill::VERSION
14 		    @copyright = "(C) 2005-2011 Mike Charlton"
15 		    @comments = "Drill Program for Learning Japanese."
16             @website = "http://jldrill.rubyforge.org"
17             @license = %Q[JLDrill - Drill Program for Learning Japanese
18 Copyright (C) 2005-2011  Mike Charlton
19 
20     This program is free software: you can redistribute it and/or modify
21     it under the terms of the GNU General Public License as published by
22     the Free Software Foundation, either version 3 of the License, or
23     (at your option) any version specified by Mike Charlton.
24 
25     This program is distributed in the hope that it will be useful,
26     but WITHOUT ANY WARRANTY; without even the implied warranty of
27     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
28     GNU General Public License for more details.
29 
30     You should have received a copy of the GNU General Public License
31     along with this program.  If not, see <http://www.gnu.org/licenses/>.
32 ]
33         end
34     end
35 end

Generated on Mon May 23 16:17:46 +0900 2011 with rcov 0.9.8