Project

General

Profile

Actions

Bug #763

closed

Mini-unit should not auto-run tests when exiting due to an exception

Added by cout (Paul Brannan) over 15 years ago. Updated almost 13 years ago.

Status:
Closed
ruby -v:
Backport:
[ruby-core:19990]

Description

=begin
[pbrannan@zem tmp]$ cat test.rb
require 'test/unit'

class MyTest < Test::Unit::TestCase
def test_foo
assert false, "this function should never get called"
end
end

Calling raise here should exit the application without running any tests

raise "HA HA"

[pbrannan@zem tmp]$ ruby1.9 test.rb
/usr/local/lib/ruby1.9/1.9.0/minitest/unit.rb:207: warning: mismatched indentations at 'end' with 'def' at 194
Loaded suite test
Started
F
Finished in 0.002771 seconds.

  1. Failure:
    test_foo(MyTest) [test.rb:5]:
    this function should never get called

1 tests, 1 assertions, 1 failures, 0 errors, 0 skips
test.rb:9:in `': HA HA (RuntimeError)
=end

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0