class M::Runner
def initialize argv
def initialize argv @argv = argv end
def run
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