module Covered::Ratio

def complete?

@returns [Boolean] Whether `executed_count` equals `executable_count`.
Whether all executable lines were executed.
def complete?
	executed_count == executable_count
end