Method: M.run

Defined in:
lib/m.rb

.run(argv) ⇒ Object

Accept arguments coming from bin/m and run tests, then bail out immediately.



9
10
11
12
13
14
# File 'lib/m.rb', line 9

def self.run argv
  # sync output since we're going to exit hard and fast
  $stdout.sync = true
  $stderr.sync = true
  exit! Runner.new(argv).run
end