Method: M::Runner#run

Defined in:
lib/m/runner.rb

#runObject

There’s two steps to running our tests:

  1. Parsing the given input for the tests we need to find (or groups of tests)

  2. Run those tests we found that match what you wanted



15
16
17
18
# File 'lib/m/runner.rb', line 15

def run
  testable = Parser.new(@argv).parse
  Executor.new(testable).execute
end