Sha256: 1cc206212011b02ec601f854c4743bc5dd795c13c6bcf8f608c80ad7930dd5e0
Contents?: true
Size: 1.39 KB
Versions: 3
Compression:
Stored size: 1.39 KB
Contents
module Cucover class Recording < Struct.new( :file_colon_line, :exception, :additional_covered_files, :analyzer, :start_time, :end_time) IGNORE_PATTERNS = [ /gem/, /vendor/, /lib\/ruby/, /cucover\/lib/ ] def feature_filename file_colon_line.split(':').first end def covers_file?(source_file) covered_files.include?(source_file) end def covers_line?(source_file, line_number) covered_files.detect{ |f| f.file == source_file }.covers_line?(line_number) end def covered_files @covered_files ||= analyzed_covered_files + additional_covered_files end def failed? !!exception end private def additional_covered_files super.map do |filename| CoveredFile.new(filename, nil, self) end end def analyzed_covered_files filtered_analyzed_files.map do |filename| lines, marked_info, count_info = analyzer.data(filename) CoveredFile.new(filename, marked_info, self) end end def boring?(file) IGNORE_PATTERNS.any? do |expression| file.match expression end end def filtered_analyzed_files analyzer.analyzed_files.reject{ |f| boring?(f) } end def normalized_files cleaned_analyzed_files + additional_covered_files end end end require 'cucover/recording/covered_file'
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
cucover-0.1.4 | lib/cucover/recording.rb |
cucover-0.1.3 | lib/cucover/recording.rb |
cucover-0.1.2 | lib/cucover/recording.rb |