class Retest::Runner

Constants

HardcodedRunner

Public Class Methods

for(test_command) click to toggle source
# File lib/retest/runner.rb, line 3
def self.for(test_command)
  if test_command.include? '<test>'
    VariableRunner
  else
    HardcodedRunner
  end.new test_command
end