test-unit 3 and minitest 5 will have equal support status as a bundled gems when Ruby 2.2.0 is released in December 2014. These bundled gems will appear in the user-oriented tarball installations, but do not get installed by "make install" when installing Ruby from SVN or git.
test-unit appears to be actively maintained and good at keeping backwards compatibility even on a major version change, so this means no code changes on our end. I am not convinced switching to minitest is worth the effort. Cc: Ken Dreyer <[email protected]> --- unicorn.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/unicorn.gemspec b/unicorn.gemspec index b24b1ac..9456db2 100644 --- a/unicorn.gemspec +++ b/unicorn.gemspec @@ -37,6 +37,7 @@ Gem::Specification.new do |s| s.add_dependency(%q<kgio>, '~> 2.6') s.add_dependency(%q<raindrops>, '~> 0.7') + s.add_development_dependency('test-unit', '~> 3.0') s.add_development_dependency('wrongdoc', '~> 1.8') s.licenses = ["GPLv2+", "Ruby 1.8"] -- EW
