Abstracting Services In Ruby C0 Coverage Information - RCov

lib/asir/transport/local.rb

Name Total Lines Lines of Code Total Coverage Code Coverage
lib/asir/transport/local.rb 21 12
61.90%
41.67%

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 module ASIR
2   class Transport
3     # !SLIDE
4     # Local Transport
5     #
6     # Send Request to same process.
7     # Requires a Identity Coder.
8     class Local < self
9       # Returns Response object after invoking Request.
10       def _send_request request, request_payload
11         invoke_request!(request)
12       end
13 
14       # Returns Response object from #send_request.
15       def _receive_response request, opaque_response
16         opaque_response
17       end
18     end
19     # !SLIDE END
20   end
21 end

Generated on Fri Jan 27 17:37:46 -0600 2012 with rcov 0.9.8