module Covered::Ratio

def ratio

def ratio
	return 1 if executable_count.zero?
	
	Rational(executed_count, executable_count)
end