about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-01-15 03:25:55 +0000
committerEric Wong <e@80x24.org>2015-01-15 03:25:55 +0000
commit1b647a7e0c2f2eb0e5e4826b10a2e0deda97483e (patch)
tree68019d977e65e4368ae82e92e50451a45475aef4
parent9fb6ec8b0ed1491f83abcf69d0786f555c15df43 (diff)
downloadruby-wordexp-1b647a7e0c2f2eb0e5e4826b10a2e0deda97483e.tar.gz
It seems alright to depend on 5.x without worrying about
compatibility to older 1.9 versions of Ruby, so we'll do it
-rw-r--r--test/test_wordexp.rb2
-rw-r--r--wordexp.gemspec1
2 files changed, 2 insertions, 1 deletions
diff --git a/test/test_wordexp.rb b/test/test_wordexp.rb
index 29f131f..9afb27d 100644
--- a/test/test_wordexp.rb
+++ b/test/test_wordexp.rb
@@ -2,7 +2,7 @@ require 'tempfile'
 require 'minitest/autorun'
 require 'wordexp'
 
-class TestWordexp < Minitest::Unit::TestCase
+class TestWordexp < Minitest::Test
   include Wordexp
 
   def test_wordexp
diff --git a/wordexp.gemspec b/wordexp.gemspec
index 21fb802..5ffa119 100644
--- a/wordexp.gemspec
+++ b/wordexp.gemspec
@@ -20,4 +20,5 @@ Gem::Specification.new do |s|
   s.test_files = Dir['test/test_*.rb']
   s.licenses = %w(LGPL-2.1+)
   s.add_development_dependency('olddoc', '~> 1.0')
+  s.add_development_dependency('minitest', '~> 5.0')
 end