]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/common/runner.rb
Make pruning use the correct config and clean up *before* running tests, too.
[mailshears.git] / lib / common / runner.rb
index c48f89a4f629168d657142871bc19f46ed781c27..01fcc176e3cedd62935a9b81c5b3657437abd610 100644 (file)
@@ -1,5 +1,12 @@
 module Runner
-  def run(plugin, targets)
+
+  def run(cfg, plugin, targets)
     raise NotImplementedError
   end
+
+  def report(plugin, msg)
+    print "#{plugin.class.to_s()} - "
+    puts msg
+  end
+
 end