module Covered::Ratio

def ratio

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