Skip to content

Commit

Permalink
checking results from super methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
treeder committed Dec 29, 2011
1 parent 1f8bcc4 commit 8a9a0b2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/abt/test_worker.rb
Expand Up @@ -17,7 +17,8 @@ def _run_suites(suites, type)
puts 'run_suites ' + suites.inspect + ' type=' + type.inspect
begin
before_suites
super(suites, type)
super_result = super(suites, type)
puts 'run_suites super_result=' + super_result.inspect
ensure
after_suites
end
Expand All @@ -27,7 +28,8 @@ def _run_suite(suite, type)
puts 'run_suite ' + suite.inspect + ' type=' + type.inspect
begin
# suite.before_suite
super(suite, type)
super_result = super(suite, type)
puts 'run_suite super_result=' + super_result.inspect
ensure
# suite.after_suite
end
Expand Down

0 comments on commit 8a9a0b2

Please sign in to comment.