module Maxitest::Testrbl

def test_pattern_from_line(line)

def test_pattern_from_line(line)
  PATTERNS.each do |r|
    next unless line =~ r
    whitespace, method, test_name = $1, $2, $4
    return [whitespace, test_pattern_from_match(method, test_name)]
  end
  nil
end