win32-api 1.10.0 → 1.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (209) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES +3 -0
  3. data/Gemfile.lock +5 -5
  4. data/ext/mkmf.log +3 -27
  5. data/ext/win32/api.c +16 -15
  6. data/lib/win32/ruby2_32/win32/api.so +0 -0
  7. data/pkg/win32-api-1.10.1-universal-mingw32.gem +0 -0
  8. data/test/test_win32_api.rb +1 -1
  9. data/vendor/bundle/ruby/3.0.0/bin/rake +27 -0
  10. data/vendor/bundle/ruby/3.0.0/bin/rake.bat +2 -0
  11. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/BSDL +22 -0
  12. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/COPYING +57 -0
  13. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/Gemfile +9 -0
  14. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/LEGAL +4 -0
  15. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/README.md +96 -0
  16. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/Rakefile +59 -0
  17. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/bin/console +12 -0
  18. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/bin/setup +6 -0
  19. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/lib/power_assert.rb +91 -0
  20. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/lib/power_assert/colorize.rb +7 -0
  21. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/lib/power_assert/configuration.rb +46 -0
  22. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/lib/power_assert/context.rb +233 -0
  23. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/lib/power_assert/enable_tracepoint_events.rb +58 -0
  24. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/lib/power_assert/inspector.rb +62 -0
  25. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/lib/power_assert/parser.rb +251 -0
  26. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/lib/power_assert/version.rb +3 -0
  27. data/vendor/bundle/ruby/3.0.0/gems/power_assert-2.0.0/power_assert.gemspec +31 -0
  28. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/CONTRIBUTING.rdoc +43 -0
  29. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/Gemfile +10 -0
  30. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/History.rdoc +2386 -0
  31. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/MIT-LICENSE +21 -0
  32. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/README.rdoc +155 -0
  33. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/Rakefile +41 -0
  34. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/bin/bundle +105 -0
  35. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/bin/console +7 -0
  36. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/bin/rake +29 -0
  37. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/bin/rdoc +29 -0
  38. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/bin/rubocop +29 -0
  39. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/bin/setup +6 -0
  40. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/doc/command_line_usage.rdoc +158 -0
  41. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/doc/example/Rakefile1 +38 -0
  42. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/doc/example/Rakefile2 +35 -0
  43. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/doc/example/a.c +6 -0
  44. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/doc/example/b.c +6 -0
  45. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/doc/example/main.c +11 -0
  46. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/doc/glossary.rdoc +42 -0
  47. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/doc/jamis.rb +592 -0
  48. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/doc/proto_rake.rdoc +127 -0
  49. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/doc/rake.1 +156 -0
  50. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/doc/rakefile.rdoc +622 -0
  51. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/doc/rational.rdoc +151 -0
  52. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/exe/rake +27 -0
  53. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake.rb +71 -0
  54. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/application.rb +824 -0
  55. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/backtrace.rb +24 -0
  56. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/clean.rb +78 -0
  57. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/cloneable.rb +17 -0
  58. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/cpu_counter.rb +107 -0
  59. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/default_loader.rb +15 -0
  60. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/dsl_definition.rb +195 -0
  61. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/early_time.rb +22 -0
  62. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/ext/core.rb +26 -0
  63. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/ext/string.rb +176 -0
  64. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/file_creation_task.rb +25 -0
  65. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/file_list.rb +435 -0
  66. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/file_task.rb +54 -0
  67. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/file_utils.rb +134 -0
  68. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/file_utils_ext.rb +134 -0
  69. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/invocation_chain.rb +57 -0
  70. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/invocation_exception_mixin.rb +17 -0
  71. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/late_time.rb +18 -0
  72. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/linked_list.rb +112 -0
  73. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/loaders/makefile.rb +54 -0
  74. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/multi_task.rb +14 -0
  75. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/name_space.rb +38 -0
  76. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/packagetask.rb +222 -0
  77. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/phony.rb +16 -0
  78. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/private_reader.rb +21 -0
  79. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/promise.rb +100 -0
  80. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/pseudo_status.rb +30 -0
  81. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/rake_module.rb +67 -0
  82. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/rake_test_loader.rb +27 -0
  83. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/rule_recursion_overflow_error.rb +20 -0
  84. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/scope.rb +43 -0
  85. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/task.rb +434 -0
  86. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/task_argument_error.rb +8 -0
  87. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/task_arguments.rb +109 -0
  88. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/task_manager.rb +331 -0
  89. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/tasklib.rb +12 -0
  90. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/testtask.rb +189 -0
  91. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/thread_history_display.rb +49 -0
  92. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/thread_pool.rb +163 -0
  93. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/trace_output.rb +23 -0
  94. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/version.rb +10 -0
  95. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/lib/rake/win32.rb +51 -0
  96. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.3/rake.gemspec +43 -0
  97. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/BSDL +24 -0
  98. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/COPYING +64 -0
  99. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/PSFL +271 -0
  100. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/README.md +97 -0
  101. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/Rakefile +66 -0
  102. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/doc/text/getting-started.md +246 -0
  103. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/doc/text/how-to.md +90 -0
  104. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/doc/text/news.md +1552 -0
  105. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test-unit.rb +19 -0
  106. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit.rb +521 -0
  107. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/assertion-failed-error.rb +25 -0
  108. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/assertions.rb +2256 -0
  109. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/attribute-matcher.rb +26 -0
  110. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/attribute.rb +227 -0
  111. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/auto-runner-loader.rb +17 -0
  112. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/autorunner.rb +569 -0
  113. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/code-snippet-fetcher.rb +58 -0
  114. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/collector.rb +73 -0
  115. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/collector/descendant.rb +19 -0
  116. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/collector/dir.rb +108 -0
  117. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/collector/load.rb +197 -0
  118. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/collector/objectspace.rb +34 -0
  119. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/collector/xml.rb +249 -0
  120. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/color-scheme.rb +216 -0
  121. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/color.rb +134 -0
  122. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/data-sets.rb +116 -0
  123. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/data.rb +371 -0
  124. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/diff.rb +745 -0
  125. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/error.rb +158 -0
  126. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/exception-handler.rb +82 -0
  127. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/failure.rb +169 -0
  128. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/fault-location-detector.rb +100 -0
  129. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/fixture.rb +304 -0
  130. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/notification.rb +138 -0
  131. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/omission.rb +198 -0
  132. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/pending.rb +155 -0
  133. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/priority.rb +196 -0
  134. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/runner/console.rb +67 -0
  135. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/runner/emacs.rb +8 -0
  136. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/runner/xml.rb +15 -0
  137. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/test-suite-creator.rb +103 -0
  138. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/testcase.rb +899 -0
  139. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/testresult.rb +132 -0
  140. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/testsuite.rb +175 -0
  141. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/ui/console/outputlevel.rb +15 -0
  142. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/ui/console/testrunner.rb +733 -0
  143. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/ui/emacs/testrunner.rb +49 -0
  144. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/ui/testrunner.rb +53 -0
  145. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/ui/testrunnermediator.rb +114 -0
  146. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/ui/testrunnerutilities.rb +41 -0
  147. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/ui/xml/testrunner.rb +224 -0
  148. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/util/backtracefilter.rb +59 -0
  149. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/util/method-owner-finder.rb +28 -0
  150. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/util/observable.rb +90 -0
  151. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/util/output.rb +32 -0
  152. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/util/procwrapper.rb +48 -0
  153. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/version.rb +5 -0
  154. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/lib/test/unit/warning.rb +3 -0
  155. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/sample/adder.rb +13 -0
  156. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/sample/subtracter.rb +12 -0
  157. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/sample/test_adder.rb +20 -0
  158. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/sample/test_subtracter.rb +20 -0
  159. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/sample/test_user.rb +23 -0
  160. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/collector/test-descendant.rb +182 -0
  161. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/collector/test-load.rb +475 -0
  162. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/collector/test_dir.rb +407 -0
  163. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/collector/test_objectspace.rb +102 -0
  164. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/fixtures/header-label.csv +3 -0
  165. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/fixtures/header-label.tsv +3 -0
  166. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/fixtures/header.csv +3 -0
  167. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/fixtures/header.tsv +3 -0
  168. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/fixtures/no-header.csv +2 -0
  169. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/fixtures/no-header.tsv +2 -0
  170. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/fixtures/plus.csv +3 -0
  171. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/run-test.rb +22 -0
  172. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-assertions.rb +2187 -0
  173. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-attribute-matcher.rb +38 -0
  174. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-attribute.rb +123 -0
  175. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-code-snippet.rb +79 -0
  176. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-color-scheme.rb +123 -0
  177. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-color.rb +47 -0
  178. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-data.rb +419 -0
  179. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-diff.rb +518 -0
  180. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-emacs-runner.rb +60 -0
  181. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-error.rb +26 -0
  182. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-failure.rb +33 -0
  183. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-fault-location-detector.rb +163 -0
  184. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-fixture.rb +713 -0
  185. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-notification.rb +33 -0
  186. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-omission.rb +81 -0
  187. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-pending.rb +70 -0
  188. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-priority.rb +184 -0
  189. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-test-case.rb +1284 -0
  190. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-test-result.rb +113 -0
  191. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-test-suite-creator.rb +97 -0
  192. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/test-test-suite.rb +151 -0
  193. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/testunit-test-util.rb +33 -0
  194. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/ui/test_testrunmediator.rb +20 -0
  195. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/util/test-method-owner-finder.rb +38 -0
  196. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/util/test-output.rb +11 -0
  197. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/util/test_backtracefilter.rb +52 -0
  198. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/util/test_observable.rb +102 -0
  199. data/vendor/bundle/ruby/3.0.0/gems/test-unit-3.4.1/test/util/test_procwrapper.rb +36 -0
  200. data/vendor/bundle/ruby/3.0.0/specifications/power_assert-2.0.0.gemspec +46 -0
  201. data/vendor/bundle/ruby/3.0.0/specifications/rake-13.0.3.gemspec +26 -0
  202. data/vendor/bundle/ruby/3.0.0/specifications/test-unit-3.4.1.gemspec +41 -0
  203. data/win32-api.gemspec +1 -1
  204. metadata +199 -8
  205. data/ext/Makefile +0 -269
  206. data/ext/api-x64-mingw32.def +0 -2
  207. data/ext/api.o +0 -0
  208. data/ext/api.so +0 -0
  209. data/ext/win32/api.so +0 -0
@@ -0,0 +1,1552 @@
1
+ # News
2
+
3
+ ## 3.4.1 - 2021-04-19 {#version-3-4-1}
4
+
5
+ ### Fixes
6
+
7
+ * Fixed a bug that `setup`/`cleanup`/`teardown` with block may be
8
+ overwritten by another `setup`/`cleanup`/`teardown` with
9
+ block. It's caused only with Ruby 2.6 or earlier.
10
+ [GitHub#179][Reported by akira yamada]
11
+
12
+ ### Thanks
13
+
14
+ * akira yamada
15
+
16
+ ## 3.4.0 - 2021-01-30 {#version-3-4-0}
17
+
18
+ ### Improvements
19
+
20
+ * Enable deprecated warnings by default.
21
+
22
+ ## 3.3.9 - 2020-12-29 {#version-3-3-9}
23
+
24
+ ### Improvements
25
+
26
+ * `assert_not_match`: Add support for `String` as pattern.
27
+ [GitHub#178][Patch by David Rodríguez]
28
+
29
+ ### Thanks
30
+
31
+ * David Rodríguez
32
+
33
+ ## 3.3.8 - 2020-12-25 {#version-3-3-8}
34
+
35
+ ### Improvements
36
+
37
+ * [UI][console]: Removed reverse mode because Ruby 3.0 reverts
38
+ reverse backtrace.
39
+
40
+ ## 3.3.7 - 2020-11-18 {#version-3-3-7}
41
+
42
+ ### Improvements
43
+
44
+ * Improved TruffleRuby support.
45
+ [GitHub#171][Reported by Benoit Daloze]
46
+
47
+ * Removed needless `to_sym`.
48
+ [GitHub#177][Patch by icm7216]
49
+
50
+ * `assert_raise`: Added backtrace for actual error.
51
+
52
+ * Improved terminal color availability detection.
53
+ [GitHub#175][Patch by nicholas a. evans]
54
+
55
+ * Changed license to the new Ruby's.
56
+ [GitHub#174]
57
+
58
+ ### Fixes
59
+
60
+ * Fixed a typo in `--help` output:
61
+ [GitHub#176][Patch by icm7216]
62
+
63
+ ### Thanks
64
+
65
+ * Benoit Daloze
66
+
67
+ * icm7216
68
+
69
+ * nicholas a. evans
70
+
71
+ ## 3.3.6 - 2020-06-10 {#version-3-3-6}
72
+
73
+ ### Improvements
74
+
75
+ * `name`, `--ignore-name`:
76
+
77
+ * Added support for regular expression options.
78
+
79
+ * Added support for matching with class name in exact match mode.
80
+ [Reported by Jun Aruga]
81
+
82
+ * Updated ruby-talk mailing list information
83
+ [GitHub#168][Patch by Chris Kampmeier]
84
+
85
+ ### Thanks
86
+
87
+ * Chris Kampmeier
88
+
89
+ * Jun Aruga
90
+
91
+ ## 3.3.5 - 2020-01-10 {#version-3-3-5}
92
+
93
+ ### Improvements
94
+
95
+ * Improved code snippet showing with different default external encoding.
96
+ [GitHub#166][Patch by Yuta Iwama]
97
+
98
+ ### Thanks
99
+
100
+ * Yuta Iwama
101
+
102
+ ## 3.3.4 - 2019-09-30 {#version-3-3-4}
103
+
104
+ ### Improvements
105
+
106
+ * Converted markup format to Markdown from RDoc.
107
+ [GitHub#164][Patch by OGAWA KenIchi]
108
+
109
+ * test: Stopped to depend on `Time#inspect` format.
110
+ [GitHub#165][Reported by Benoit Daloze]
111
+
112
+ ### Thanks
113
+
114
+ * OGAWA KenIchi
115
+
116
+ * Benoit Daloze
117
+
118
+ ## 3.3.3 - 2019-05-10 {#version-3-3-3}
119
+
120
+ ### Fixed
121
+
122
+ * Fixed a bug that priority mode with test case name that uses
123
+ special characters such as `?` can't be used on Windows.
124
+
125
+ ## 3.3.2 - 2019-04-11 {#version-3-3-2}
126
+
127
+ ### Fixes
128
+
129
+ * Fixed a bug that `Test::Unit::Collector::Load` doesn't load test
130
+ files under sub directories when these files have the same base
131
+ name as test files in upper directories.
132
+ [Reported by Kenta Murata]
133
+
134
+ ### Thanks
135
+
136
+ * Kenta Murata
137
+
138
+ ## 3.3.1 - 2019-03-27 {#version-3-3-1}
139
+
140
+ ### Improvements
141
+
142
+ * Added support for `Test::Unit::AssertionFailedError#user_message`
143
+ for not only `assert_equal` and `assert_raise` but also all
144
+ assertions.
145
+ [GitHub#162][Reported by xgraffm]
146
+
147
+ ### Thanks
148
+
149
+ * xgraffm
150
+
151
+ ## 3.3.0 - 2019-01-23 {#version-3-3-0}
152
+
153
+ ### Improvements
154
+
155
+ * Added support for auto test run when all tests are defined in
156
+ modules.
157
+
158
+ * Added support for defining methods to test case class in multiple
159
+ threads.
160
+ [GitHub#159][Reported by Charles Oliver Nutter]
161
+
162
+ * Suppressed warnings on Ruby 2.5.
163
+ [GitHub#160][Reported by Daniel Berger]
164
+
165
+ * Suppressed warnings on Ruby 2.7.
166
+
167
+ ### Fixes
168
+
169
+ * Fixed a code snippet fetch failure when source code isn't UTF-8
170
+ and the default external encoding is set to not UTF-8.
171
+ [GitHub#161][Reported by masa kunikata]
172
+
173
+ ### Thanks
174
+
175
+ * Charles Oliver Nutter
176
+
177
+ * Daniel Berger
178
+
179
+ * masa kunikata
180
+
181
+ ## 3.2.9 - 2018-12-01 {#version-3-2-9}
182
+
183
+ ### Improvements
184
+
185
+ * Added support for data generation by method. `data_#{test_name}`
186
+ is called to generate data for `test_name` test.
187
+
188
+ * Added support for data matrix generation.
189
+
190
+ Example:
191
+
192
+ ```ruby
193
+ data(:a, [0, 1, 2])
194
+ data(:b, [:x, :y])
195
+ def test_data(data)
196
+ end
197
+ ```
198
+
199
+ This example generates the following data matrix:
200
+
201
+ * label: `"a: 0, b: :x"`, data: `{a: 0, b: :x}`
202
+ * label: `"a: 0, b: :y"`, data: `{a: 0, b: :y}`
203
+ * label: `"a: 1, b: :x"`, data: `{a: 1, b: :x}`
204
+ * label: `"a: 1, b: :y"`, data: `{a: 1, b: :y}`
205
+ * label: `"a: 2, b: :x"`, data: `{a: 2, b: :x}`
206
+ * label: `"a: 2, b: :y"`, data: `{a: 2, b: :y}`
207
+
208
+ * Added `Test::Unit::TestCase#data` that returns the current data.
209
+
210
+ * Added support for using test method that doesn't have no
211
+ parameters as data driven test.
212
+
213
+ Example:
214
+
215
+ ```ruby
216
+ data("label", :value)
217
+ def test_data # Available since this release
218
+ p data # :value
219
+ end
220
+ ```
221
+
222
+ * Added support for `:keep` option to `Test::Unit::TestCase.data`.
223
+
224
+ * Added support for `:group` option to
225
+ `Test::Unit::TestCase.data`. It's useful to generate multiple data
226
+ matrix groups.
227
+
228
+ ```ruby
229
+ # Group1
230
+ data(:a, [0, 1, 2], group: :g1)
231
+ data(:b, [:x, :y], group: :g1)
232
+ # Group2
233
+ data(:a, [:x, :y], group: :g2)
234
+ data(:c, [-1, -2], group: :g2)
235
+ def test_data(data)
236
+ end
237
+ ```
238
+
239
+ This example generates the following data matrix:
240
+
241
+ * label: `"group: :g1, a: 0, b: :x"`, data: `{a: 0, b: :x}`
242
+ * label: `"group: :g1, a: 0, b: :y"`, data: `{a: 0, b: :y}`
243
+ * label: `"group: :g1, a: 1, b: :x"`, data: `{a: 1, b: :x}`
244
+ * label: `"group: :g1, a: 1, b: :y"`, data: `{a: 1, b: :y}`
245
+ * label: `"group: :g1, a: 2, b: :x"`, data: `{a: 2, b: :x}`
246
+ * label: `"group: :g1, a: 2, b: :y"`, data: `{a: 2, b: :y}`
247
+ * label: `"group: :g2, a: :x, b: -1"`, data: `{a: :x, b: -1}`
248
+ * label: `"group: :g2, a: :x, b: -2"`, data: `{a: :x, b: -2}`
249
+ * label: `"group: :g2, a: :y, b: -1"`, data: `{a: :y, b: -1}`
250
+ * label: `"group: :g2, a: :y, b: -2"`, data: `{a: :y, b: -2}`
251
+
252
+ ## 3.2.8 - 2018-05-13 {#version-3-2-8}
253
+
254
+ ### Improvements
255
+
256
+ * [UI][console]: Changed to put code snippet before backtrace on
257
+ reverse mode.
258
+
259
+ ## 3.2.7 - 2017-12-12 {#version-3-2-7}
260
+
261
+ ### Improvements
262
+
263
+ * Added source code link to gemspec.
264
+ [GitHub#157][Patch by Grey Baker]
265
+
266
+ * Changed to use SVG image for badges in README.
267
+ [GitHub#158][Patch by Olle Jonsson]
268
+
269
+ * [UI][console]: Added `--reverse-output` option to output fault
270
+ details in reverse like Ruby 2.5. It's enabled by default only for
271
+ tty output.
272
+
273
+ ### Fixes
274
+
275
+ * Fixed a typo.
276
+ [GitHub#156][Patch by masa kunikata]
277
+
278
+ * [UI][console]: Fixed a bug that broken align in verbose mode.
279
+
280
+ ### Thanks
281
+
282
+ * masa kunikata
283
+
284
+ * Grey Baker
285
+
286
+ * Olle Jonsson
287
+
288
+ ## 3.2.6 - 2017-09-21 {#version-3-2-6}
289
+
290
+ ### Improvements
291
+
292
+ * Changed test file require failure to error from omission.
293
+ [GitHub#154][Patch by naofumi-fujii]
294
+
295
+ ### Thanks
296
+
297
+ * naofumi-fujii
298
+
299
+ ## 3.2.5 - 2017-06-24 {#version-3-2-5}
300
+
301
+ ### Improvements
302
+
303
+ * Supported `--enable-frozen-string-literal` `ruby` option.
304
+ [GitHub#149][Reported by Pat Allan]
305
+
306
+ ### Thanks
307
+
308
+ * Pat Allan
309
+
310
+ ## 3.2.4 - 2017-05-23 {#version-3-2-4}
311
+
312
+ ### Improvements
313
+
314
+ * Updated tests for Ruby 2.4. [GitHUb#136][Patch by Kazuki Tsujimoto]
315
+
316
+ * Supported power\_assert 1.0.0. [GitHub#137][Patch by Kazuki Tsujimoto]
317
+
318
+ * Added the getting started document.
319
+ [GitHub#139][GitHub#141][Patch by Hiroyuki Sato]
320
+
321
+ * Added the document for `attribute`.
322
+ [GitHub#143][Patch by Fumiaki MATSUSHIMA]
323
+
324
+ * Improved a link for GitHub. [GitHub#144][Patch by rochefort]
325
+
326
+ * Updated `.travis.yml`. [GitHub#145][Patch by Jun Aruga]
327
+
328
+ ### Fixes
329
+
330
+ * Fixed a contributor name. [GitHub#131][Patch by Akira Matsuda]
331
+
332
+ * Fixed typos in document. [GitHub#132][Patch by Akira Matsuda]
333
+
334
+ * Fixed typos in document. [GitHub#134][Patch by Yuji Yaginuma]
335
+
336
+ * Fixed a bug that data label with "(" isn't supported.
337
+ [GitHub#135][Reported by Kazuki Tsujimoto]
338
+
339
+ * Fixed assertion message in English.
340
+ [GitHub#133][Reported by Khalil Fazal]
341
+
342
+ * Fixed a typo in typo fix. [GitHub#138][Patch by kami]
343
+
344
+ * Fixed a bug that target location finder may return wrong
345
+ location. [GitHub#146][Patch by Yuki Ito]
346
+
347
+ * Fixed a bug that `--no-show-detail-immediately` raises an error.
348
+ [GitHub#147][Reported by MSP-Greg]
349
+
350
+ ### Thanks
351
+
352
+ * Akira Matsuda
353
+
354
+ * Yuji Yaginuma
355
+
356
+ * Kazuki Tsujimoto
357
+
358
+ * Khalil Fazal
359
+
360
+ * kami
361
+
362
+ * Hiroyuki Sato
363
+
364
+ * Fumiaki MATSUSHIMA
365
+
366
+ * rochefort
367
+
368
+ * Jun Aruga
369
+
370
+ * Yuki Ito
371
+
372
+ * MSP-Greg
373
+
374
+ ## 3.2.3 - 2016-11-25 {#version-3-2-3}
375
+
376
+ ### Fixes
377
+
378
+ * Fixed a bug that `--order` isn't applied.
379
+ [GitHub#129][Reported by Vít Ondruch]
380
+
381
+ ### Thanks
382
+
383
+ * Vít Ondruch
384
+
385
+ ## 3.2.2 - 2016-11-02 {#version-3-2-2}
386
+
387
+ ### Improvements
388
+
389
+ * Improved Travis CI configuration.
390
+ [GitHub#123][Patch by Ryunosuke Sato]
391
+
392
+ * Supported Java native exception.
393
+ [GitHub#126][Reported by Bob Saveland]
394
+
395
+ ### Fixes
396
+
397
+ * doc: Fixed markup. [GitHub#127][Patch by Tomohiro Hashidate]
398
+
399
+ * Fixed a bug that `--location=LINE` may not detect a test when
400
+ fixtures are defined before any tests:
401
+
402
+ 1 class MyTestCase < Test::Unit::TestCase
403
+ 2 setup do
404
+ 3 end
405
+ 4
406
+ 5 test "xxx" do
407
+ 6 end
408
+ 7 end
409
+
410
+ `--location=5` couldn't find the `xxx` test.
411
+
412
+ [Reported by Ryota Sasabe]
413
+
414
+ ### Thanks
415
+
416
+ * Ryunosuke Sato
417
+
418
+ * Tomohiro Hashidate
419
+
420
+ * Bob Saveland
421
+
422
+ * Ryota Sasabe
423
+
424
+ ## 3.2.1 - 2016-07-19 {#version-3-2-1}
425
+
426
+ ### Improvements
427
+
428
+ * Clarified lib/test/unit/diff.rb license. It's a triple license of
429
+ the Ruby license, PSF license and LGPLv2.1 or later.
430
+ [Reported by Luisa Pace]
431
+
432
+ * Reported norification when data driven test doesn't have
433
+ parameter.
434
+ [GitHub#122][Reported by Satoshi "Moris" Tagomori]
435
+
436
+ ### Thanks
437
+
438
+ * Luisa Pace
439
+
440
+ * Satoshi "Moris" Tagomori
441
+
442
+ ## 3.2.0 - 2016-06-12 {#version-3-2-0}
443
+
444
+ ### Improvements
445
+
446
+ * Supported rxvt family terminals as color available terminals.
447
+ [GitHub#121][Reported by Ippei Kishida]
448
+
449
+ ### Thanks
450
+
451
+ * Ippei Kishida
452
+
453
+ ## 3.1.9 - 2016-05-20 {#version-3-1-9}
454
+
455
+ ### Fixes
456
+
457
+ * Fixed conflict with test-unit-power_assert.
458
+ [GitHub#120][Patch by Kazuki Tsujimoto]
459
+
460
+ * Fixed a bug that path in `$LOAD_PATH` may be removed.
461
+
462
+ ### Thanks
463
+
464
+ * Kazuki Tsujimoto
465
+
466
+ ## 3.1.8 - 2016-03-19 {#version-3-1-8}
467
+
468
+ ### Improvements
469
+
470
+ * Added `--stop-on-failure` command line option. With this option,
471
+ running test suite is stopped immediately when one test is failed
472
+ or an error is raised in one test.
473
+
474
+ ## 3.1.7 - 2016-01-17 {#version-3-1-7}
475
+
476
+ ### Fixes
477
+
478
+ * Added a missing require.
479
+
480
+ ## 3.1.6 - 2016-01-17 {#version-3-1-6}
481
+
482
+ It's a Ruby on Rails integration improvement release.
483
+
484
+ ### Improvements
485
+
486
+ * Filtered backtrace of power\_assert.
487
+ [GitHub#114]
488
+ * Improved performance to retrieve test defined location.
489
+ * Improved performance to run fixtures in a test.
490
+ * Supported running a test by `yield` in `setup`:
491
+
492
+ Before:
493
+
494
+ def setup
495
+ @file = File.open("x")
496
+ end
497
+
498
+ def teardown
499
+ @file.close
500
+ end
501
+
502
+ After:
503
+
504
+ def setup
505
+ File.open("x") do |file|
506
+ @file = file
507
+ yield
508
+ end
509
+ end
510
+
511
+ * Added `--default-test-path` option that specifies the default path
512
+ that has tests.
513
+ * Made auto runner registration more lazily. Auto runner isn't
514
+ registered automatically until user defines a test. In the
515
+ previous releases, auto runner is registered automatically when
516
+ user defines a test case.
517
+ * Supported specifying a test by location in command line. For
518
+ example, the following command line runs a test that is defined in
519
+ /tmp/test_a.rb at line 10:
520
+
521
+ % ruby -r test-unit -e run_test /tmp/test_a.rb:10
522
+
523
+ ### Fixes
524
+
525
+ * Fixed a bug that test isn't ran. The test has the same name as
526
+ data driven test that is defined in parent test case.
527
+ [GitHub#115]
528
+
529
+ ## 3.1.5 - 2015-10-09 {#version-3-1-5}
530
+
531
+ It's a Rack integration improvement release.
532
+
533
+ ### Improvements
534
+
535
+ * Renamed experimental top-level `run` method to `run_test` method
536
+ because `run` is conflicted with Rack.
537
+ [GitHub#32][GitHub:basecamp/pow#303] [Reported by Yevhen Viktorov]
538
+
539
+ ### Thanks
540
+
541
+ * Yevhen Viktorov
542
+
543
+ ## 3.1.4 - 2015-09-26 {#version-3-1-4}
544
+
545
+ It's a minor improvement release.
546
+
547
+ ### Improvements
548
+
549
+ * Updated sample code. [GitHub#109][Patch by takiy33]
550
+ * Updated .travis.yml. [GitHub#110][Patch by takiy33]
551
+ * document: Added table header in how to document.
552
+ [GitHub#111][Patch by takiy33]
553
+ * Removed duplicated code.
554
+ [GitHub#112][Patch by takiy33]
555
+ * Removed needless encoding conversion in fetching code snippet.
556
+ [GitHub#113][Patch by NARUSE, Yui]
557
+
558
+ ### Thanks
559
+
560
+ * takiy33
561
+ * NARUSE, Yui
562
+
563
+ ## 3.1.3 - 2015-07-26 {#version-3-1-3}
564
+
565
+ It's a bug fix release.
566
+
567
+ ### Improvements
568
+
569
+ * Removed unused `TODO` file. [GitHub#108][Patch by takiy33]
570
+
571
+ ### Fixes
572
+
573
+ * `--location`: Fixed a bug that `--location LINE` doesn't work when
574
+ test script is specified as relative path. [Reported by TOMITA Masahiro]
575
+
576
+ The following doesn't work:
577
+
578
+ % ruby ./test.rb --location 10
579
+
580
+ The following works:
581
+
582
+ % ruby test.rb --location 10
583
+
584
+ ### Thanks
585
+
586
+ * takiy33
587
+ * TOMITA Masahiro
588
+
589
+ ## 3.1.2 - 2015-06-09 {#version-3-1-2}
590
+
591
+ It's command line option improvements fix release.
592
+
593
+ ### Improvements
594
+
595
+ * `--location`: Made path match rule more strict.
596
+ [Suggested by kimura wataru]
597
+ * Before:
598
+ * If test defined path ends with the specified path, the test is
599
+ matched.
600
+ * After:
601
+ * If base name of test defined path equals to the specified
602
+ path, the test is matched.
603
+ * If relative path of test defined path equals to the specified
604
+ path, the test is matched.
605
+ * If the specified path is absolute path and test defined path
606
+ equals to the specified path, the test is matched.
607
+ * `--pattern`: If the option is specified, the default patterns
608
+ aren't used. In the earlier versions, both the default patterns
609
+ and the specified patterns are used.
610
+ [Suggested by kimura wataru]
611
+
612
+ ### Thanks
613
+
614
+ * kimura wataru
615
+
616
+ ## 3.1.1 - 2015-05-29 {#version-3-1-1}
617
+
618
+ It's a bug fix release.
619
+
620
+ ### Fixes
621
+
622
+ * Fixed a bug that `--location` detects tests not only in sub test
623
+ case but also parent test case.
624
+ [GitHub#105][Reported by wanabe]
625
+
626
+ ### Thanks
627
+
628
+ * wanabe
629
+
630
+ ## 3.1.0 - 2015-05-28 {#version-3-1-0}
631
+
632
+ It's a bug fix release.
633
+
634
+ ### Improvements
635
+
636
+ * [ui][console] Removed needless new line.
637
+
638
+ ### Fixes
639
+
640
+ * Fixed a bug that priority mode can't be used on Windows.
641
+ [GitHub#95][Reported by Daniel Berger]
642
+ * Fixed a homepage URL RubyGems spec.
643
+ [GitHub#96][Patch by Masayoshi Takahashi]
644
+ supported.) [GitHub#89][Patch by Aaron Stone]
645
+ * Fixed a bug that shutdown hook isn't called when pass throw
646
+ exception such as `Interrupt` is raised.
647
+ [GitHub#98][Reported by jeremiahishere.]
648
+ * Fixed typos in documents.
649
+ [GitHub#100][Reported by scivola]
650
+ [GitHub#102][GitHub#103][Patch by Masafumi Yokoyama]
651
+ * Fixed a bug that the same name test isn't executed in sub test case.
652
+ [GitHub#104][Reported by wanabe]
653
+
654
+ ### Thanks
655
+
656
+ * Daniel Berger
657
+ * Masayoshi Takahashi
658
+ * jeremiahishere
659
+ * scivola
660
+ * Masafumi Yokoyama
661
+ * wanabe
662
+
663
+ ## 3.0.9 - 2014-12-31 {#version-3-0-9}
664
+
665
+ It's a release that improves colors.
666
+
667
+ ### Improvements
668
+
669
+ * Added a work around for Ruby 1.8. (Note: Ruby 1.8 isn't
670
+ supported.) [GitHub#89][Patch by Aaron Stone]
671
+ * Supported colorized output on Windows.
672
+ [GitHub#90][Patch by usa]
673
+ * Improved colorized output.
674
+ http://www.a-k-r.org/d/2014-12.html#a2014_12_27_1
675
+ [Suggested by Tanaka Akira]
676
+
677
+ ### Thanks
678
+
679
+ * Aaron Stone
680
+ * usa
681
+ * Tanaka Akira
682
+
683
+ ## 3.0.8 - 2014-12-12 {#version-3-0-8}
684
+
685
+ It's a release that supports Ruby 2.2.0 preview2.
686
+
687
+ ### Improvements
688
+
689
+ * Added a link for YARD in README.
690
+ [GitHub:test-unit.github.io#2][Reported by sunnyone]
691
+ * Added description about "/PATTERN/" style value in auto runner usage.
692
+ [GitHub#86][Suggested by sunnyone]
693
+ * Supported Ruby 2.2.0 preview2 in `assert_throw` and
694
+ `assert_nothing_thrown`.
695
+
696
+ ### Fixes
697
+
698
+ * Fixed a bug that error report is failed when source encoding and
699
+ locale encoding are different.
700
+ [GitHub#87][Reported by scivola]
701
+
702
+ ### Thanks
703
+
704
+ * sunnyone
705
+ * scivola
706
+
707
+ ## 3.0.7 - 2014-11-14 {#version-3-0-7}
708
+
709
+ It's a minor update release.
710
+
711
+ ### Fixes
712
+
713
+ * Fixed a bug that teardown blocks aren't called with sub class to
714
+ parent class order.
715
+ [GitHub#85][Reported by TOMITA Masahiro]
716
+
717
+ ### Thanks
718
+
719
+ * TOMITA Masahiro
720
+
721
+ ## 3.0.6 - 2014-11-09 {#version-3-0-6}
722
+
723
+ It's a minor update release.
724
+
725
+ ### Improvements
726
+
727
+ * Improved code snippet location.
728
+ [GitHub#84][Patch by Yuki Kurihara]
729
+
730
+ ### Thanks
731
+
732
+ * Yuki Kurihara
733
+
734
+ ## 3.0.5 - 2014-11-08 {#version-3-0-5}
735
+
736
+ It's a minor update release.
737
+
738
+ ### Fixes
739
+
740
+ * Fixed a bug that startup/shutdown of parent test case isn't called
741
+ when the test case includes one or more modules.
742
+ [GitHub#83][Reported by Chadderton Odwazny]
743
+
744
+ ### Thanks
745
+
746
+ * Chadderton Odwazny
747
+
748
+ ## 3.0.4 - 2014-11-01 {#version-3-0-4}
749
+
750
+ It's a minor update release.
751
+
752
+ ### Improvements
753
+
754
+ * Stopped to remove JRuby and Rubinius internal backtrace entries from
755
+ backtrace on failure/error.
756
+ [GitHub#82][Patch by Charles Oliver Nutter]
757
+
758
+ ### Thanks
759
+
760
+ * Charles Oliver Nutter
761
+
762
+ ## 3.0.3 - 2014-10-29 {#version-3-0-3}
763
+
764
+ It's a minor update release.
765
+
766
+ ### Improvements
767
+
768
+ * Improved `Test::Unit::TestCase.test` performance.
769
+ 100 times faster.
770
+ * Supported `Proc` for user message.
771
+ [Sugested by Nobuyoshi Nakada]
772
+
773
+ ### Fixes
774
+
775
+ * Fixed markup in document.
776
+ [GitHub#81][Patch by Masafumi Yokoyama]
777
+
778
+ ### Thanks
779
+
780
+ * Masafumi Yokoyama
781
+ * Nobuyoshi Nakada
782
+
783
+ ## 3.0.2 - 2014-10-15 {#version-3-0-2}
784
+
785
+ It's a minor update release.
786
+
787
+ ### Improvements
788
+
789
+ * Supported broken `==` implementation.
790
+ `==` implementation should be fixed but it's not work of test-unit. :<
791
+ [GitHub#71][Reported by Emily]
792
+ * [UI][console]: Accepted no message failure.
793
+ [GitHub#66][Reported by Brian Tatnall]
794
+ * Updated gem description.
795
+ [GitHub#74][Patch by Vít Ondruch]
796
+ * Updated GPL text.
797
+ [GitHub#78][Patch by Vít Ondruch]
798
+
799
+ ### Fixes
800
+
801
+ * Removed needless executable bit from README file.
802
+ [GitHub#79][Patch by Vít Ondruch]
803
+
804
+ ### Thanks
805
+
806
+ * Emily
807
+ * Brian Tatnall
808
+ * Vít Ondruch
809
+
810
+ ## 3.0.1 - 2014-08-05 {#version-3-0-1}
811
+
812
+ It's a minor update release.
813
+
814
+ ### Improvements
815
+
816
+ * Improved Ruby 1.8.7 support. Note that we don't support Ruby 1.8.7
817
+ actively. We just support if its support is painless.
818
+ [GitHub#71][Patch by estolfo]
819
+
820
+ ### Thanks
821
+
822
+ * estolfo
823
+
824
+ ## 3.0.0 - 2014-08-03 {#version-3-0-0}
825
+
826
+ It's Power Assert supported release!
827
+
828
+ ### Improvements
829
+
830
+ * Improved Rubinius support. [Ryo Onodera]
831
+ * Updated RR repository link. [GitHub#56][Patch by Kenichi Kamiya]
832
+ * Added some minitest compatible assertions. We don't recommend
833
+ using these assertions. They are just for migrating from minitest.
834
+ [GitHub#57][Patch by Karol Bucek]
835
+ * {Test::Unit::Assertions#refute}
836
+ * {Test::Unit::Assertions#refute_predicate}
837
+ * {Test::Unit::Assertions#refute_empty}
838
+ * {Test::Unit::Assertions#assert_not_includes}
839
+ * {Test::Unit::Assertions#refute_includes}
840
+ * {Test::Unit::Assertions#assert_not_instance_of}
841
+ * {Test::Unit::Assertions#refute_instance_of}
842
+ * {Test::Unit::Assertions#assert_not_kind_of}
843
+ * {Test::Unit::Assertions#refute_kind_of}
844
+ * {Test::Unit::Assertions#assert_not_operator}
845
+ * {Test::Unit::Assertions#refute_operator}
846
+ * Improved code readability. [Suggested by Kenichi Kamiya]
847
+ * Made license field in RubyGems parseable.
848
+ [GitHub#60][Patch by Michael Grosser]
849
+ * Improved test case match feature by `--testcase` and `--ignore-testcase`
850
+ options. They also checks parent class names.
851
+ * Made inspected representation of Numeric objects especially
852
+ BigDecimal more readable. [GitHub#64][Reported by Byron Appelt]
853
+ * Added badges for Traivs CI and RubyGems.
854
+ [GitHub#65][Patch by Byron Appelt]
855
+ * Supported Power Assert. You can use Power Assert with
856
+ {Test::Unit::Assertions#assert} with block. See method document
857
+ for details. We recommend using Power Assert for predicate method
858
+ checks. For example, we recommend Power Assert rather than
859
+ {Test::Unit::Assertions#assert_true},
860
+ {Test::Unit::Assertions#assert_predicate} and so on. We don't
861
+ recommend using Power Assert for equality check assertion.
862
+ {Test::Unit::Assertions#assert_equal} should be used for the case.
863
+ [Kazuki Tsujimoto]
864
+
865
+ ### Fixes
866
+
867
+ * Fixed a bug that test case defined by block has wrong location.
868
+ [GitHub#58][Patch by Narihiro Nakamura]
869
+ * Fixed a bug that test methods defined in included modules in
870
+ super-class are also collected.
871
+ [GitHub#62][GitHub#63][Patch by Karol Bucek]
872
+
873
+ ### Thanks
874
+
875
+ * Ryo Onodera
876
+ * Kenichi Kamiya
877
+ * Karol Bucek
878
+ * Narihiro Nakamura
879
+ * Michael Grosser
880
+ * Byron Appelt
881
+ * Kazuki Tsujimoto
882
+
883
+ ## 2.5.5 - 2013-05-18 {#version-2-5-5}
884
+
885
+ It's Ruby 2.0.0 supported release!
886
+
887
+ ### Improvements
888
+
889
+ * Supported Ruby 2.0.0. [GitHub#54] [Reported by mtasaka]
890
+ * Accepted screen-256color TERM as 256 colors available environment.
891
+ [GitHub#55] [Reported by Tom Miller]
892
+
893
+ ### Fixes
894
+
895
+ * Fixed a typo in document.
896
+ [GitHub#53] [Patch by Baptiste Fontaine]
897
+ * Fixed a bug in {Test::Unit::Assertions#assert_in_epsilon}. It doesn't work
898
+ as expected if expected value is negative value.
899
+ [Ruby Bug #8317] [Reported by Nobuhiro IMAI]
900
+
901
+ ### Thanks
902
+
903
+ * Baptiste Fontaine
904
+ * mtasaka
905
+ * Tom Miller
906
+ * Nobuhiro IMAI
907
+
908
+ ## 2.5.4 - 2013-01-23 {#version-2-5-4}
909
+
910
+ It's a bug fix release.
911
+
912
+ ### Improvements
913
+
914
+ * Added documents for data driven test functionality.
915
+ * Added TSV support for data driven test functionality.
916
+ * Support tag inspection on JRuby.
917
+
918
+ ### Fixes
919
+
920
+ * Fixed a bug. It is too slow to filter tests when there are many
921
+ tests. [GitHub#46]
922
+ * Accept anonymous test suite.
923
+ [GitHub:#49] [Reported by Matthew Rudy Jacobs]
924
+
925
+ ### Thanks
926
+
927
+ * Matthew Rudy Jacobs
928
+
929
+ ## 2.5.3 - 2012-11-28 {#version-2-5-3}
930
+
931
+ It's a release for minitest compatibility and bug fix.
932
+
933
+ ### Improvements
934
+
935
+ * Supported diff in invalid encoding.
936
+ * Added some assersion methods just for minitest compatibility.
937
+ Added methods are assert_includes(), refute_*() and refute().
938
+ If you are test-unit user, please don't use them.
939
+ [GitHub#40] [Suggested by Michael Grosser]
940
+ * Added --attribute option to select target tests by attribute.
941
+ [test-unit-users-en:00098] [Suggested by Piotr Nestorow]
942
+
943
+ ### Fixes
944
+
945
+ * Allowed use of test for inheritance in ActionController::TestCase.
946
+ [GitHub#42] [Patch by David Rasch]
947
+ * Ensured evaluating at_exit block in top level.
948
+ In IRB context, exit() specifies irb_exit().
949
+ [test-unit-users-en:00089] [Reported by Daniel Berger]
950
+ * Fixed a bug that decoration style description is ignored.
951
+ "decoration style description" are using description method
952
+ above "def test_name" or with Symbol specifying test_name.
953
+ [GitHub#45] [Reported by Piotr Nestorow]
954
+
955
+ ### Thanks
956
+
957
+ * Michael Grosser
958
+ * David Rasch
959
+ * Daniel Berger
960
+ * Piotr Nestorow
961
+
962
+ ## 2.5.2 - 2012-08-29 {#version-2-5-2}
963
+
964
+ It's an improvement release for tmtms. `--location` is a similar
965
+ feature to `--line_number` in RSpec. `sub_test_case` is a similar
966
+ feature to `context` in shoulda-context and RSpec.
967
+
968
+ ### Improvements
969
+
970
+ * Cleaned up tests.
971
+ [GitHub#34] [Patch by Michael Grosser]
972
+ * Added missing background color for 8 color environment.
973
+ * Added workaround for NetBeans.
974
+ [GitHub#38] [Reported by Marc Cooper]
975
+ * Added `--location` command line option that selects target tests
976
+ by test defined location.
977
+ * Created sub test suite for each subclassed test case.
978
+ * [ui][console] Supported nested test suites.
979
+ * Added {Test::Unit.at_start} and {Test::Unit.at_exit} hooks that
980
+ are run before/after all tests are run.
981
+ [Good hook name is suggested by kdmsnr]
982
+ * Improved code snippet target on failure. Test method is always used
983
+ for code snippet target.
984
+ [GitHub#39] [Suggested by Michael Grosser]
985
+ * Added {Test::Unit::TestCase.sub_test_case} that creates sub test case.
986
+ The sub test case name isn't limited Ruby's constant name rule. You can
987
+ specify the sub test case name in free form.
988
+
989
+ ### Thanks
990
+
991
+ * Michael Grosser
992
+ * Marc Cooper
993
+ * kdmsnr
994
+
995
+ ## 2.5.1 - 2012-07-05 {#version-2-5-1}
996
+
997
+ It's a bug fix release.
998
+
999
+ ### Improvements
1000
+
1001
+ * Supported installing from GitHub.
1002
+ [GitHub#29] [Suggested by Michael Grosser]
1003
+ * Supported ActiveSupport::TestCase.
1004
+ [GitHub#30] [Reported by Michael Grosser]
1005
+ * [ui][console] Improved multiline falut message display.
1006
+
1007
+ ### Fixes
1008
+
1009
+ * [ui][console] Fixed a bug that expected and actual values are
1010
+ empty.
1011
+ [GitHub#31][GitHub#33]
1012
+ [Reported by Kendall Buchanan][Reported by Mathieu Martin]
1013
+ [Hinted by Michael Grosser]
1014
+ * Fixed a bug that .gemspec can't be loaded on LANG=C.
1015
+ [RubyForge#29595] [Reported by Jean-Denis Koeck]
1016
+
1017
+ ### Thanks
1018
+
1019
+ * Michael Grosser
1020
+ * Kendall Buchanan
1021
+ * Mathieu Martin
1022
+ * Jean-Denis Koeck
1023
+
1024
+ ## 2.5.0 - 2012-06-06 {#version-2-5-0}
1025
+
1026
+ It's a bug fix release.
1027
+
1028
+ ### Fixes
1029
+
1030
+ * Fixed a backward incompatibility of `TestUnitMediator#run_suite`
1031
+ introduced in 2.4.9.
1032
+ [GitHub#28] [Reported by Vladislav Rassokhin]
1033
+
1034
+ ### Thanks
1035
+
1036
+ * Vladislav Rassokhin
1037
+
1038
+ ## 2.4.9 - 2012-06-03 {#version-2-4-9}
1039
+
1040
+ It's a bug fix release.
1041
+
1042
+ ### Improvements
1043
+
1044
+ * `Test::Unit.run?` ->
1045
+ `Test::Unit::AutoRunner.need_auto_run?`. `Test::Unit.run?` is marked
1046
+ as deprecated but it is still available.
1047
+ * [experimental] Added top level "run" method for `"ruby -rtest-unit -e
1048
+ run test/test_*.rb"`. Is this API OK or dirty?
1049
+ * Made failure output more readable on no color mode.
1050
+ * Supported showing ASCII-8BIT diff in failure message.
1051
+ * [ui][console] Supported `ENV["TERM"] == "xterm-256color"` as color
1052
+ available terminal.
1053
+ [GitHub#26] [Reported by Michael Grosser]
1054
+ * [ui][console] Supported "-256color" suffix `ENV["TERM"]` terminal
1055
+ as 256 color supported terminal.
1056
+
1057
+ ### Fixes
1058
+
1059
+ * Fixed a bug that `--workdir` doesn't work.
1060
+ * Consumed processed command line parameters in `ARGV` as `--help`
1061
+ says.
1062
+ [RubyForge#29554] [Reported by Bob Saveland]
1063
+ * Added missing `require "test/unit/diff"`.
1064
+ [GitHub#25] [Reported by Stephan Kulow]
1065
+
1066
+ ### Thanks
1067
+
1068
+ * Bob Saveland
1069
+ * Stephan Kulow
1070
+ * Michael Grosser
1071
+
1072
+ ## 2.4.8 - 2012-3-6 {#version-2-4-8}
1073
+
1074
+ It's a bug fix release.
1075
+
1076
+ ### Improvements
1077
+
1078
+ * Delayed at_exit registration until Test::Unit is used.
1079
+ [GitHub:#21] [Reported by Jason Lunn]
1080
+ * Added workaround for test-spec.
1081
+ [GitHub:#22] [Reported by Cédric Boutillier]
1082
+
1083
+ ### Fixes
1084
+
1085
+ * Fixed an error on code snippet display on JRuby.
1086
+ [GitHub:#19][GitHub:#20]
1087
+ [Reported by Jørgen P. Tjernø][Patch by Junegunn Choi]
1088
+
1089
+ ### Thanks
1090
+
1091
+ * Jørgen P. Tjernø
1092
+ * Junegunn Choi
1093
+ * Jason Lunn
1094
+
1095
+ ## 2.4.7 - 2012-2-10 {#version-2-4-7}
1096
+
1097
+ It's a code snippet improvement release.
1098
+
1099
+ ### Improvements
1100
+
1101
+ * Supported code snippet display on all faults.
1102
+
1103
+ ## 2.4.6 - 2012-2-9 {#version-2-4-6}
1104
+
1105
+ It's a TAP runner separated release.
1106
+
1107
+ ### Improvements
1108
+
1109
+ * Moved TAP runner to test-unit-runner-tap gem from test-unit gem.
1110
+ * Supported code snippet display on failure.
1111
+
1112
+ ## 2.4.5 - 2012-1-16 {#version-2-4-5}
1113
+
1114
+ It's a failure message readability improvement release.
1115
+
1116
+ ### Improvements
1117
+
1118
+ * Removed needless information from exception inspected
1119
+ text on failure. It's for easy to read.
1120
+ * Supported custom inspector.
1121
+
1122
+ ## 2.4.4 - 2012-1-2 {#version-2-4-4}
1123
+
1124
+ It's a Rails integration improved release.
1125
+
1126
+ ### Improvements
1127
+
1128
+ * [ui][console] Don't break progress display when a test is failed.
1129
+ * [ui][console] Added markers betwen a failure detail
1130
+ message in progress to improve visibility.
1131
+ * [travis] Dropped Ruby 1.8.6 as a test target. [GitHub:#13]
1132
+ [Patch by Josh Kalderimis]
1133
+ * Supported expected value == 0 case in assert_in_epsilon. [RubyForge#29485]
1134
+ [Reported by Syver Enstad]
1135
+ * Supported a block style setup/teardown/cleanup.
1136
+
1137
+ ### Thanks
1138
+
1139
+ * Josh Kalderimis
1140
+ * Syver Enstad
1141
+
1142
+ ## 2.4.3 - 2011-12-11 {#version-2-4-3}
1143
+
1144
+ ### Improvements
1145
+
1146
+ * Improved SimpleCov integration by stopping to modify
1147
+ `ARGV` in auto runner. [GitHub:#12]
1148
+ [Reported by Nikos Dimitrakopoulos]
1149
+ * Improved JRuby integration by removing JRuby internal backtrace.
1150
+
1151
+ ### Thanks
1152
+
1153
+ * Nikos Dimitrakopoulos
1154
+
1155
+ ## 2.4.2 - 2011-11-26 {#version-2-4-2}
1156
+
1157
+ ### Improvements
1158
+
1159
+ * `--name` supported data label.
1160
+
1161
+ ## 2.4.1 - 2011-11-09
1162
+
1163
+ ### Improvements
1164
+
1165
+ * Accepted AssertionMessage as assertion's user message.
1166
+ It is used in assert_select in actionpack.
1167
+ [Reported by David Heath]
1168
+
1169
+ ### Fixes
1170
+
1171
+ * Fixed test failure on LANG=C. #11 [Reported by boutil]
1172
+ * Suppress warnings on Ruby 1.9.2.
1173
+
1174
+ ### Thanks
1175
+
1176
+ * boutil
1177
+ * David Heath
1178
+
1179
+ ## 2.4.0 - 2011-09-18
1180
+
1181
+ ### Improvements
1182
+
1183
+ * Supported Travis CI. #5 [Suggested by James Mead]
1184
+ * Added Gemfile. #6 [Suggested by James Mead]
1185
+ * [ui][console] Supported notification in show-detail-immediately.
1186
+ * [ui][console] enable --show-detail-immediately by default.
1187
+ * [ui] Added --max-diff-target-string-size option.
1188
+ * [ui][console] Supported 256 colors.
1189
+
1190
+ ### Fixes
1191
+
1192
+ * Added missing fixture file. #7 [Reported by grafi-tt]
1193
+ * [ui][console] Added missing the last newline for progress level.
1194
+ * Supported correct backtrace for redefined notification.
1195
+ * Don't handle Timeout::Error as pass through exception on Ruby 1.8. #8
1196
+ [Reported by Marc Seeger (Acquia)]
1197
+
1198
+ ### Thanks
1199
+
1200
+ * James Mead
1201
+ * grafi-tt
1202
+ * Marc Seeger (Acquia)
1203
+
1204
+ ## 2.3.2 - 2011-08-15
1205
+
1206
+ A bug fix release.
1207
+
1208
+ ### Improvements
1209
+
1210
+ * [ui][console] Added some newlines to improve readability.
1211
+
1212
+ ### Fixes
1213
+
1214
+ * [ui][console] Worked --verbose again.
1215
+ * Re-supported Ruby 1.8.6. [Reported by James Mead]
1216
+
1217
+ ### Thanks
1218
+
1219
+ * James Mead
1220
+
1221
+ ## 2.3.1 - 2011-08-06 {#version-2-3-1}
1222
+
1223
+ Output improvement release!
1224
+
1225
+ ### Improvements
1226
+
1227
+ * [ui][console] Outputs omissions and notifications in short.
1228
+ * [ui][console] Added "important-only" verbose level.
1229
+ * Intelligence diff supports recursive references.
1230
+ * [rubyforge #29325] Supported Ruby Enterprise Edition.
1231
+ [Reported by Hans de Graaff]
1232
+ * [rubyforge #29326] Supported JRuby.
1233
+ [Reported by Hans de Graaff]
1234
+ * Added --show-detail-immediately option that shows
1235
+ fault details when a fault is occurred.
1236
+
1237
+ ### Fixes
1238
+
1239
+ * [pull request #1] Fixed a problem that load collector
1240
+ can't load a test file on Ruby 1.9. [Patch by grafi-tt]
1241
+ * [issue #3] Fixed a problem that implicit method name
1242
+ override by declarative style test definition.
1243
+ [Reported by Jeremy Stephens]
1244
+
1245
+ ### Thanks
1246
+
1247
+ * grafi-tt
1248
+ * Jeremy Stephens
1249
+ * Hans de Graaff
1250
+
1251
+ ## 2.3.0 / 2011-04-17
1252
+
1253
+ * 13 enhancements
1254
+ * improve Hash key sorting for diff.
1255
+ * [#28928] support any characters in declarative style description.
1256
+ [Daniel Berger]
1257
+ * add Error#location and make #backtrace deprecated.
1258
+ * make TestCase#passed? public.
1259
+ * add result finished and pass assertion notifications.
1260
+ * add TestSuite#passed? public.
1261
+ * add XML test runner.
1262
+ * add --output-file-descriptor option.
1263
+ * measure elapsed time for each test.
1264
+ * add --collector option.
1265
+ * support test driven test.
1266
+ [Haruka Yoshihara]
1267
+ * add cleanup hook it runs between after test and before teardown.
1268
+ * support recursive collection sort for diff.
1269
+
1270
+ * Thanks
1271
+ * Daniel Berger
1272
+ * Haruka Yoshihara
1273
+
1274
+ ## 2.2.0 / 2011-02-14
1275
+
1276
+ * 22 enhancements
1277
+ * [#28808] accept String as delta for assert_in_delta.
1278
+ [Daniel Berger]
1279
+ * [test-unit-users-en:00035] make GC-able finished tests.
1280
+ [Daniel Berger]
1281
+ * use also COLUMNS environment variable to guess terminal width.
1282
+ * make delta for assert_in_delta optional.
1283
+ [Nobuyoshi Nakada]
1284
+ * add assert_not_respond_to.
1285
+ [Nobuyoshi Nakada]
1286
+ * add assert_not_match. assert_no_match is deprecated.
1287
+ [Nobuyoshi Nakada]
1288
+ * add assert_not_in_delta.
1289
+ [Nobuyoshi Nakada]
1290
+ * add assert_in_epsilon.
1291
+ [Nobuyoshi Nakada]
1292
+ * add assert_not_in_epsilon.
1293
+ [Nobuyoshi Nakada]
1294
+ * add assert_include.
1295
+ [Nobuyoshi Nakada]
1296
+ * add assert_not_include.
1297
+ [Nobuyoshi Nakada]
1298
+ * add assert_empty.
1299
+ [Nobuyoshi Nakada]
1300
+ * add assert_not_empty.
1301
+ [Nobuyoshi Nakada]
1302
+ * notify require failed paths.
1303
+ * validate message value for assert.
1304
+ * show throughputs at the last.
1305
+ * support not ASCII compatible string diff.
1306
+ * support colorized diff on encoding different string.
1307
+ * normalize entry order of Hash for readable diff.
1308
+ * add --ignore-name option.
1309
+ * add --ignore-testcase option.
1310
+ * add assert_not_send.
1311
+
1312
+ * Thanks
1313
+ * Daniel Berger
1314
+ * Nobuyoshi Nakada
1315
+
1316
+ ## 2.1.2 / 2010-11-25
1317
+
1318
+ * 1 enhancement
1319
+ * support auto runner prepare hook.
1320
+
1321
+ ## 2.1.1 / 2010-07-29
1322
+
1323
+ * 1 bug fix
1324
+ * [test-unit-users-en:00026] re-work tap runner.
1325
+ [Daniel Berger]
1326
+
1327
+ * Thanks
1328
+ * Daniel Berger
1329
+
1330
+ === 2.1.0 / 2010-07-17
1331
+
1332
+ * 1 bug fix
1333
+ * [#28267] global config file ignored
1334
+ [Daniel Berger]
1335
+
1336
+ * Thanks
1337
+ * Daniel Berger
1338
+
1339
+ ## 2.0.8 / 2010-06-02
1340
+
1341
+ * 5 major enchancements
1342
+ * collect *_test.rb and *-test.rb files as test files.
1343
+ * [#28181] improve assert_in_delta message.
1344
+ [Suggested by David MARCHALAND]
1345
+ * show string encoding in assert_equal failure message if
1346
+ they are different.
1347
+ * change default color scheme:
1348
+ * success: green back + white
1349
+ * failure: red back + white
1350
+ * add capture_output.
1351
+
1352
+ * 2 bug fixes
1353
+ * fix a bug that console runner on verbose mode causes an
1354
+ error for long test name (>= 61).
1355
+ * [#28093] Autorunner ignores all files in a directory named test by default
1356
+ [Reported by Florian Frank]
1357
+
1358
+ * Thanks
1359
+ * Florian Frank
1360
+ * David MARCHALAND
1361
+
1362
+ ## 2.0.7 / 2010-03-09
1363
+
1364
+ * 4 major enhancements
1365
+ * detect redefined test methods.
1366
+ * [INTERFACE IMCOMPATIBLE] multiple --name and --testcase
1367
+ options narrow down targets instead of adding targets.
1368
+ * [#27764] accept custom test_order for each test case.
1369
+ [Suggested by David MARCHALAND]
1370
+ * [#27790] ignore omitted tests from 'n% passed' report.
1371
+ [Suggested by Daniel Berger]
1372
+
1373
+ * 2 minor enchancements
1374
+ * [#27832] ignore .git directory. [Suggested by Daniel Berger]
1375
+ * [#27792] require 'fileutils' and 'tmpdir' lazily for non-priority
1376
+ mode users. [Suggested by David MARCHALAND]
1377
+
1378
+ * 2 bug fixes
1379
+ * [#27892] modify processed arguments array destructively.
1380
+ [Reported by Bob Saveland]
1381
+ * work without HOME environment variable.
1382
+ [Reported by Champak Ch]
1383
+
1384
+ * Thanks
1385
+ * David MARCHALAND
1386
+ * Daniel Berger
1387
+ * Bob Saveland
1388
+ * Champak Ch
1389
+
1390
+ ## 2.0.6 / 2010-01-09
1391
+
1392
+ * 3 major enhancements
1393
+ * [#27380] Declarative syntax? [Daniel Berger]
1394
+ support declarative syntax:
1395
+
1396
+ test "test description in natural language" do
1397
+ ...
1398
+ end
1399
+ * support test description:
1400
+ description "test description in natural language"
1401
+ def test_my_test
1402
+ ...
1403
+ end
1404
+ * make max diff target string size customizable by
1405
+ TEST_UNIT_MAX_DIFF_TARGET_STRING_SIZE environment variable.
1406
+
1407
+ * 2 bug fixes
1408
+ * [#27374] omit_if unexpected behavior [David MARCHALAND]
1409
+ * fix a bug that tests in sub directories aren't load with --basedir.
1410
+ [Daniel Berger]
1411
+
1412
+ * Thanks
1413
+ * David MARCHALAND
1414
+ * Daniel Berger
1415
+
1416
+ ## 2.0.5 / 2009-10-18
1417
+
1418
+ * 1 bug fixes
1419
+ * [#27314] fix diff may raise an exception. [Erik Hollensbe]
1420
+
1421
+ * Thanks
1422
+ * Erik Hollensbe
1423
+
1424
+ ## 2.0.4 / 2009-10-17
1425
+
1426
+ * 4 major enhancements
1427
+ * use ~/.test-unit.yml as global configuration file.
1428
+ * add TAP runner. (--runner tap)
1429
+ * support colorized diff:
1430
+ http://test-unit.github.io/color-diff.png
1431
+ * add Test::Unit::AutoRunner.default_runner= to specify default test runner.
1432
+
1433
+ * 4 minor enhancements
1434
+ * improve verbose mode output format. (use indent)
1435
+ * support `NOT_PASS_THROUGH_EXCEPTIONS`.
1436
+ * support arguments option in `#{runner}_options`.
1437
+ * TC_ -> Test in sample test case name.
1438
+
1439
+ * 1 bug fixes
1440
+ * [#27195] test-unit-2.0.3 + ruby-1.9.1 cannot properly test
1441
+ DelegateClass subclasses [Mike Pomraning]
1442
+
1443
+ * Thanks
1444
+ * Mike Pomraning
1445
+
1446
+ ## 2.0.3 / 2009-07-19
1447
+
1448
+ * 6 major enhancements
1449
+ * add assert_predicate.
1450
+ * add assert_not_predicate.
1451
+ * [#24210] assert_kind_of supports an array of classes or modules.
1452
+ [Daniel Berger]
1453
+ * assert_instance_of supports an array of classes or modules.
1454
+ * add --default-priority option.
1455
+ * [#26627] add --order option. [Daniel Berger]
1456
+
1457
+ * 4 minor enhancements
1458
+ * use yellow foreground + black background for error.
1459
+ * don't show diff for long string.
1460
+ * accept "*term-color" TERM environment as colorizable terminal.
1461
+ (e.g. Apple's Terminal)
1462
+ * [#26268] add a workaround for test-spec's after_all. [Angelo Lakra]
1463
+
1464
+ * 1 bug fix
1465
+ * [#23586] re-support ruby 1.9.1. [Diego Pettenò]
1466
+
1467
+ * Thanks
1468
+ * Diego Pettenò
1469
+ * Daniel Berger
1470
+ * Angelo Lakra
1471
+
1472
+ ## 2.0.2 / 2008-12-21
1473
+
1474
+ * 2 major enhancements
1475
+
1476
+ * re-support ruby 1.8.5.
1477
+ * improve exception object comparison.
1478
+
1479
+ * 3 bug fixes
1480
+
1481
+ * [#22723]: collector fails on anonymous classes
1482
+ * [#22986]: Test names with '?' blow up on Windows
1483
+ * [#22988]: don't create .test-result on non-priority mode.
1484
+
1485
+ * Thanks
1486
+
1487
+ * Erik Hollensbe
1488
+ * Daniel Berger
1489
+ * Bill Lear
1490
+
1491
+ ## 2.0.1 / 2008-11-09
1492
+
1493
+ * 19 major enhancements
1494
+
1495
+ * support ruby 1.9.1.
1496
+ * add run_test method to be extensible.
1497
+ * improve priority-mode auto off.
1498
+ * improve startup/shutdown RDoc. [Daniel Berger]
1499
+ * add assert_compare. [#20851] [Designing Patterns]
1500
+ * add assert_fail_assertion. [#20851] [Designing Patterns]
1501
+ * add assert_raise_message. [#20851] [Designing Patterns]
1502
+ * support folded diff.
1503
+ * add assert_raise_kind_of. [Daniel Berger]
1504
+ * ingore inherited test for nested test case.
1505
+ * add assert_const_defined.
1506
+ * add assert_not_const_defined.
1507
+ * support assert_raise with an exception object.
1508
+ * support assert_raise with no arguments that asserts any
1509
+ exception is raised. [#22602] [Daniel Berger]
1510
+ * support folded dot progress.
1511
+ * add --progress-row-max option.
1512
+ * support color scheme customize.
1513
+ * support configuration file. (YAML)
1514
+ * recognize test-XXX.rb files as test files not only test_XXX.rb
1515
+
1516
+ * Thanks
1517
+
1518
+ * Daniel Berger
1519
+ * Designing Patterns
1520
+
1521
+ ## 2.0.0 / 2008-06-18
1522
+
1523
+ * 15 major enhancements
1524
+
1525
+ * support startup/shutdown. (test case level setup/teardown)
1526
+ * support multiple setup/teardown.
1527
+ * support pending.
1528
+ * support omission.
1529
+ * support notification.
1530
+ * support colorize.
1531
+ * support diff.
1532
+ * support test attribute.
1533
+ * add assert_boolean.
1534
+ * add assert_true.
1535
+ * add assert_false.
1536
+ * add --priority-mode option.
1537
+ * don't use ObjectSpace to collect test cases.
1538
+ * make more customizable. (additional options, exception handling and so on)
1539
+ * improve Emacs integration.
1540
+
1541
+ * 4 major changes
1542
+
1543
+ * remove GTK+1 support.
1544
+ * split GTK+ runner as another gem.
1545
+ * split FOX runner as another gem.
1546
+ * split Tk runner as another gem.
1547
+
1548
+ ## 1.2.3 / 2008-02-25
1549
+
1550
+ * 1 major enhancement
1551
+
1552
+ * Birthday (as a gem)!