.simplecov
author Mahlon E. Smith <mahlon@martini.nu>
Mon, 12 May 2014 16:34:12 -0700
changeset 3 62196065e9ea
parent 0 aef8f9f4a788
permissions -rw-r--r--
Use full class paths with configurability, so additional subclassing (via pluggability, or manual) works as expected.

# Simplecov config

SimpleCov.start do
	add_filter 'spec'
	add_filter 'integration'
	add_group "Needing tests" do |file|
		file.covered_percent < 90
	end
end