class M::TestCollection

def column_size

Used to line up method names in `#sprintf` when `m` aborts
def column_size
  # Boil down the collection of test methods to the name of the method's
  # size, then find the largest one
  @column_size ||= map { |test| test.name.to_s.size }.max
end