File rubygem-test-unit.changes of Package rubygem-test-unit
-------------------------------------------------------------------
Sat Sep 26 04:30:35 UTC 2015 - coolo@suse.com
- updated to version 3.1.4
see installed news.md
## 3.1.4 - 2015-09-26 {#version-3-1-4}
It's a minor improvement release.
### Improvements
* Updated sample code. [GitHub#109][Patch by takiy33]
* Updated .travis.yml. [GitHub#110][Patch by takiy33]
* document: Added table header in how to document.
[GitHub#111][Patch by takiy33]
* Removed duplicated code.
[GitHub#112][Patch by takiy33]
* Removed needless encoding conversion in fetching code snippet.
[GitHub#113][Patch by NARUSE, Yui]
### Thanks
* takiy33
* NARUSE, Yui
-------------------------------------------------------------------
Mon Jul 27 04:30:24 UTC 2015 - coolo@suse.com
- updated to version 3.1.3
see installed news.md
## 3.1.3 - 2015-07-26 {#version-3-1-3}
It's a bug fix release.
### Improvements
* Removed unused `TODO` file. [GitHub#108][Patch by takiy33]
### Fixes
* `--location`: Fixed a bug that `--location LINE` doesn't work when
test script is specified as relative path. [Reported by TOMITA Masahiro]
The following doesn't work:
% ruby ./test.rb --location 10
The following works:
% ruby test.rb --location 10
### Thanks
* takiy33
* TOMITA Masahiro
-------------------------------------------------------------------
Fri Jun 12 04:36:59 UTC 2015 - coolo@suse.com
- updated to version 3.1.2
see installed news.md
## 3.1.2 - 2015-06-09 {#version-3-1-2}
It's command line option improvements fix release.
### Improvements
* `--location`: Made path match rule more strict.
[Suggested by kimura wataru]
* Before:
* If test defined path ends with the specified path, the test is
matched.
* After:
* If base name of test defined path equals to the specified
path, the test is matched.
* If relative path of test defined path equals to the specified
path, the test is matched.
* If the specified path is absolute path and test defined path
equals to the specified path, the test is matched.
* `--pattern`: If the option is specified, the default patterns
aren't used. In the earlier versions, both the default patterns
and the specified patterns are used.
[Suggested by kimura wataru]
### Thanks
* kimura wataru
## 3.1.1 - 2015-05-29 {#version-3-1-1}
It's a bug fix release.
### Fixes
* Fixed a bug that `--location` detects tests not only in sub test
case but also parent test case.
[GitHub#105][Reported by wanabe]
### Thanks
* wanabe
-------------------------------------------------------------------
Thu May 28 04:34:33 UTC 2015 - coolo@suse.com
- updated to version 3.1.0
see installed news.md
## 3.1.0 - 2015-05-28 {#version-3-1-0}
It's a bug fix release.
### Improvements
* [ui][console] Removed needless new line.
### Fixes
* Fixed a bug that priority mode can't be used on Windows.
[GitHub#95][Reported by Daniel Berger]
* Fixed a homepage URL RubyGems spec.
[GitHub#96][Patch by Masayoshi Takahashi]
supported.) [GitHub#89][Patch by Aaron Stone]
* Fixed a bug that shutdown hook isn't called when pass throw
exception such as `Interrupt` is raised.
[GitHub#98][Reported by jeremiahishere.]
* Fixed typos in documents.
[GitHub#100][Reported by scivola]
[GitHub#102][GitHub#103][Patch by Masafumi Yokoyama]
* Fixed a bug that the same name test isn't executed in sub test case.
[GitHub#104][Reported by wanabe]
### Thanks
* Daniel Berger
* Masayoshi Takahashi
* jeremiahishere
* scivola
* Masafumi Yokoyama
* wanabe
-------------------------------------------------------------------
Tue Feb 10 18:37:51 UTC 2015 - coolo@suse.com
- updated to version 3.0.9
-------------------------------------------------------------------
Sat May 18 07:30:56 UTC 2013 - coolo@suse.com
- updated to version 2.5.5, no changelog
-------------------------------------------------------------------
Wed Jan 23 06:51:34 UTC 2013 - coolo@suse.com
- updated to version 2.5.4, no changelog
-------------------------------------------------------------------
Thu Nov 29 11:01:16 UTC 2012 - coolo@suse.com
- updated to version 2.5.3
* improved mini-test compat
-------------------------------------------------------------------
Wed Aug 29 08:11:23 UTC 2012 - coolo@suse.com
- updated to version 2.5.2, no changelog
-------------------------------------------------------------------
Sun Jul 15 06:46:00 UTC 2012 - coolo@suse.com
- update to 2.5.1, no changelog
-------------------------------------------------------------------
Fri Jun 22 05:10:52 UTC 2012 - coolo@suse.com
- update to 2.5.0, no changelog
-------------------------------------------------------------------
Fri Apr 27 06:10:22 UTC 2012 - coolo@suse.com
- trying to fix an issue with ci_reporter (see github)
-------------------------------------------------------------------
Wed Apr 4 11:49:04 UTC 2012 - coolo@suse.com
- update to 2.4.8 - History.txt removed ;(
-------------------------------------------------------------------
Mon Jun 14 18:20:17 UTC 2010 - mrueckert@suse.de
- additional changes from version 2.0.9
* fix a packaging miss.
- additional changes from version 2.0.8
* collect *_test.rb and *-test.rb files as test files.
* [#28181] improve assert_in_delta message.
[Suggested by David MARCHALAND]
* show string encoding in assert_equal failure message if
they are different.
* change default color scheme:
* success: green back + white
* failure: red back + white
* add capture_output.
* fix a bug that console runner on verbose mode causes an
error for long test name (>= 61).
* [#28093] Autorunner ignores all files in a directory named test
by default [Reported by Florian Frank]
- additional changes from version 2.0.7
* detect redefined test methods.
* [INTERFACE IMCOMPATIBLE] multiple --name and --testcase
options narrow down targets instead of adding targets.
* [#27764] accept custom test_order for each test case.
[Suggested by David MARCHALAND]
* [#27790] ignore omitted tests from 'n% passed' report.
[Suggested by Daniel Berger]
* [#27832] ignore .git directory. [Suggested by Daniel Berger]
* [#27792] require 'fileutils' and 'tmpdir' lazily for
non-priority mode users. [Suggested by David MARCHALAND]
* [#27892] modify processed arguments array destructively.
[Reported by Bob Saveland]
* work without HOME environment variable.
[Reported by Champak Ch]
- additional changes from version 2.0.6
* [#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.
* [#27374] omit_if unexpected behavior [David MARCHALAND]
* fix a bug that tests in sub directories aren't load with
--basedir. [Daniel Berger]
-------------------------------------------------------------------
Fri Jun 11 10:00:01 UTC 2010 - mrueckert@suse.de
- use rubygems_requires macro
-------------------------------------------------------------------
Mon Nov 16 15:06:53 UTC 2009 - dmacvicar@novell.com
- update to 2.0.5
* [#27314] fix diff may raise an exception. [Erik Hollensbe]
- changes in 2.0.4
* 4 major enhancements
* use ~/.test-unit.yml as global configuration file.
* add TAP runner. (--runner tap)
* support colorized diff:
http://test-unit.rubyforge.org/svn/trunk/images/color-diff.png
* add Test::Unit::AutoRunner.default_runner= to specify default
test runner.
* improve verbose mode output format. (use indent)
* support NOT_PASS_THROUGH_EXCEPTIONS.
* support arguments option in #{runner}_options.
* TC_ -> Test in sample test case name.
* [#27195] test-unit-2.0.3 + ruby-1.9.1 cannot properly test
DelegateClass subclasses [Mike Pomraning]
-------------------------------------------------------------------
Fri Sep 4 10:23:59 CEST 2009 - lslezak@suse.cz
- updated to test-unit-2.0.3
-------------------------------------------------------------------
Thu Jul 16 18:49:04 CEST 2009 - lslezak@suse.cz
- do not pack /usr/bin/testrb file, it conflicts with the file
in the main ruby package (it's the same file)
-------------------------------------------------------------------
Thu Jul 16 13:45:03 CEST 2009 - lslezak@suse.cz
- initial packaging (version 2.0.2)