From: Yusuke Endoh Date: 2011-07-05T01:51:52+09:00 Subject: [ruby-core:37781] [Ruby 1.9 - Feature #4095][Feedback] C1 Coverage Issue #4095 has been updated by Yusuke Endoh. Category set to lib Status changed from Assigned to Feedback Assignee deleted (Yusuke Endoh) Target version set to 1.9.x Hello, sorry for very late response... I agree that C1 coverage is very helpful. But I have no plan to implement the feature. It will be a tough task. Your contribution is wanted. If anyone writes a patch, please send us. -- Yusuke Endoh ---------------------------------------- Feature #4095: C1 Coverage http://redmine.ruby-lang.org/issues/4095 Author: Daniel Heath Status: Feedback Priority: Normal Assignee: Category: lib Target version: 1.9.x =begin The built-in coverage in Ruby 1.9 is great, but it only offers line-by-line coverage. It would be better if we could determine which parts of each line have been run e.g: # File 'coverage_example.rb' true ? 'always run' : 'never run' Coverage would return: {'coverage_example.rb' => [ { 0..28 => 1 }, { 0..21 => 1, 22..33 => 0 } ] } =end -- http://redmine.ruby-lang.org