From kou at cozmixng.org Sat Jan 9 06:05:49 2010 From: kou at cozmixng.org (Kouhei Sutou) Date: Sat, 09 Jan 2010 20:05:49 +0900 (JST) Subject: [test-unit-users-en:00019] [ANN] test-unit 2.0.6 Message-ID: <20100109.200549.181388163714634238.kou@cozmixng.org> Hi, test-unit 2.0.6 has been released: http://test-unit.rubyforge.org/ Install: % sudo gem install test-unit Highlights: This release includes declarative syntax like shoulda: test "test description in natural language" do ... end Description: Test::Unit 2.x - Improved version of Test::Unit bundled in Ruby 1.8.x. Ruby 1.9.x bundles miniunit not Test::Unit. Test::Unit bundled in Ruby 1.8.x had not been improved but unbundled Test::Unit (Test::Unit 2.x) will be improved actively. Changes: * 3 major enhancements * [#27380] Declarative syntax? [Daniel Berger] support declarative syntax: test "test description in natural language" do ... end * support test description: description "test description in natural language" def test_my_test ... end * make max diff target string size customizable by TEST_UNIT_MAX_DIFF_TARGET_STRING_SIZE environment variable. * 2 bug fixes * [#27374] omit_if unexpected behavior [David MARCHALAND] * fix a bug that tests in sub directories aren't load with --basedir. [Daniel Berger] * Thanks * David MARCHALAND * Daniel Berger Thanks, -- kou