Class: DeepCover::AutoRun::Runner

Inherits:
Object
  • Object
show all
Defined in:
lib/deep_cover/auto_run.rb

Instance Method Summary collapse

Constructor Details

#initialize(covered_path) ⇒ Runner

Returns a new instance of Runner.



9
10
11
# File 'lib/deep_cover/auto_run.rb', line 9

def initialize(covered_path)
  @covered_path = covered_path
end

Instance Method Details

#run!Object



13
14
15
16
17
# File 'lib/deep_cover/auto_run.rb', line 13

def run!
  detect
  load
  after_tests { save }
end