Test-unit 2.4.4

Hi,

test-unit 2.4.4 has been released.

Web: http://test-unit.rubyforge.org/#test-unit
Install: gem install test-unit

This release improves Rails integration. You can use block
style setup/cleanup/teardown like ActiveSupport::TestCase:

class MyTest < Test::Unit::TestCase
setup do

end

cleanup do
  ...
end

teardown do
  ...
end

end

Changes:
http://test-unit.rubyforge.org/test-unit/en/file.news.html#2-4-4

h2(#2-4-4). 2.4.4 - 2012-1-2

It’s a Rails integration improved release.

h3. Improvements

  • [ui][console] Don’t break progress display when a test is failed.
  • [ui][console] Added markers betwen a failure detail
    message in progress to improve visibility.
  • [travis] Dropped Ruby 1.8.6 as a test target. [GitHub:#13]
    [Patch by Josh Kalderimis]
  • Supported expected value == 0 case in assert_in_epsilon.
    [RubyForge#29485]
    [Reported by Syver Enstad]
  • Supported a block style setup/teardown/cleanup.

h3. Thanks

  • Josh Kalderimis
  • Syver Enstad

Thanks,