module DeepCover::AutoRun

Public Class Methods

run!(covered_path) click to toggle source
# File lib/deep_cover/auto_run.rb, line 41
def self.run!(covered_path)
  @runners ||= {}
  @runners[covered_path] ||= Runner.new.run!
end