module Beaker::Shared::Timed

def run_and_report_duration &block

def run_and_report_duration &block
  start = Time.now
  block.call
  Time.now - start
end