class M::TestCollection

def by_line_number &block

Be considerate when printing out tests and pre-sort them by line number
def by_line_number &block
  # On each member of the collection, sort by line number and yield
  # the block into the sorted collection
  sort_by(&:start_line).each(&block)
end