class CrudeMutant::Executor

Public Class Methods

call(test_command) click to toggle source
# File lib/crude_mutant/executor.rb, line 5
def self.call(test_command)
  `#{test_command}`
  $?.success?
end