Class: MiniTest::Unit::ProvisionedRunner

Inherits:
MiniTest::Unit
  • Object
show all
Defined in:
lib/chef-workflow/runner/provisioned.rb

Instance Method Summary collapse

Instance Method Details

#_run_suite(suite, type) ⇒ Object



13
14
15
16
17
18
19
20
# File 'lib/chef-workflow/runner/provisioned.rb', line 13

def _run_suite(suite, type)
  begin
    suite.before_suite unless suite.test_methods.empty?
    super(suite, type)
  ensure
    suite.after_suite unless suite.test_methods.empty?
  end
end