class M::Runner

def initialize argv

def initialize argv
  @argv = argv
end

def run

2. Run those tests we found that match what you wanted
1. Parsing the given input for the tests we need to find (or groups of tests)
There's two steps to running our tests:
def run
  testable = Parser.new(@argv).parse
  Executor.new(testable).execute
end