C0 code coverage information
Generated on Mon Aug 13 01:18:55 -0400 2007 with rcov 0.8.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 require "drb/drb"
2
3 module Spec
4 module Runner
5 # Facade to run specs by connecting to a DRB server
6 class DrbCommandLine
7 # Runs specs on a DRB server. Note that this API is similar to that of
8 # CommandLine - making it possible for clients to use both interchangeably.
9 def self.run(argv, stderr, stdout, exit=true, warn_if_no_files=true)
10 begin
11 DRb.start_service
12 spec_server = DRbObject.new_with_uri("druby://localhost:8989")
13 spec_server.run(argv, stderr, stdout)
14 rescue DRb::DRbConnError
15 stderr.puts "No server is running"
16 exit 1 if exit
17 end
18 end
19 end
20 end
21 end
Generated using the rcov code coverage analysis tool for Ruby version 0.8.0.