Module | SimpleCov |
In: |
lib/simplecov.rb
lib/simplecov/source_file.rb lib/simplecov/formatter.rb lib/simplecov/version.rb lib/simplecov/result.rb lib/simplecov/filter.rb |
Code coverage for ruby 1.9. Please check out README for a full introduction.
VERSION | = | "0.4.2" |
running | [RW] |
Returns the result for the current coverage run, merging it across test suites from cache using SimpleCov::ResultMerger if use_merging is activated (default)
Sets up SimpleCov to run against your project. You can optionally specify an adapter to use as well as configuration with a block:
SimpleCov.start OR SimpleCov.start 'rails' # using rails adapter OR SimpleCov.start do add_filter 'test' end OR SimpleCov.start 'rails' do add_filter 'test' end
Please check out the RDoc for SimpleCov::Configuration to find about available config options