From: Tomoyuki Chikanaga Date: 2011-07-05T00:47:58+09:00 Subject: [ruby-core:37776] [Ruby 1.9 - Feature #4796][Assigned] Coverage should be restartable Issue #4796 has been updated by Tomoyuki Chikanaga. Status changed from Open to Assigned Assignee set to Tomoyuki Chikanaga Target version changed from 1.9.x to 1.9.3 Sorry, I don't have extra Mac. But I can show a patch. I'll commit it. ---------------------------------------- Feature #4796: Coverage should be restartable http://redmine.ruby-lang.org/issues/4796 Author: Xavier Shay Status: Assigned Priority: Low Assignee: Tomoyuki Chikanaga Category: lib Target version: 1.9.3 I would like a way to be able to make the following test past: require "test/unit" require "coverage" require 'tmpdir' class TestCoverage < Test::Unit::TestCase def test_restarting_coverage Dir.mktmpdir {|tmp| Dir.chdir(tmp) { File.open("test.rb", "w") do |f| f.puts <<-EOS def coverage_test_method puts :ok end EOS end Coverage.start require tmp + '/test.rb' Coverage.result Coverage.start coverage_test_method assert_equal 1, Coverage.result.size } } end end The problem is that `Coverage.start` doesn't track any files loaded before it is called. This is probably desired behaviour so that stdlib files are not tracked, but it limits the usefulness of Coverage. Specifically, I am trying to collate coverage reports from workers in multiple processes. Also I want to associate coverages with specific tests (this test executed this code, etc...). This is very difficult without being able to restart. What would be involved in doing this? If you point me in the right direction I can perhaps have a go. -- http://redmine.ruby-lang.org