mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/coverage/coverage.c (Init_coverage): Change list format and
describe Coverage.result output. Patch by Sylvain Daubert. [Ruby 1.9 - Bug #5428] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33449 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
55b3a88bb5
commit
ccec5b49ca
2 changed files with 13 additions and 5 deletions
|
@ -1,3 +1,9 @@
|
|||
Tue Oct 11 06:06:29 2011 Eric Hodel <drbrain@segment7.net>
|
||||
|
||||
* ext/coverage/coverage.c (Init_coverage): Change list format and
|
||||
describe Coverage.result output. Patch by Sylvain Daubert.
|
||||
[Ruby 1.9 - Bug #5428]
|
||||
|
||||
Tue Oct 11 05:53:23 2011 Eric Hodel <drbrain@segment7.net>
|
||||
|
||||
* object.c (Init_Object): Add reference to BasicObject, brief
|
||||
|
|
|
@ -71,11 +71,13 @@ rb_coverage_result(VALUE klass)
|
|||
*
|
||||
* = Usage
|
||||
*
|
||||
* (1) require "coverage.so"
|
||||
* (2) do Coverage.start
|
||||
* (3) require or load Ruby source file
|
||||
* (4) Coverage.result will return a hash that contains filename as key and
|
||||
* coverage array as value.
|
||||
* 1. require "coverage.so"
|
||||
* 2. do Coverage.start
|
||||
* 3. require or load Ruby source file
|
||||
* 4. Coverage.result will return a hash that contains filename as key and
|
||||
* coverage array as value. A coverage array gives, for each line, the
|
||||
* number of line execution by the interpreter. A +nil+ value means
|
||||
* coverage is disabled for this line (lines like +else+ and +end+).
|
||||
*
|
||||
* = Example
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue