diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-03-11 12:12:15 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-03-11 12:12:15 +0000 |
commit | 79ea4d627ffc38c9754123c7535dc264dfc8e74e (patch) | |
tree | d50e06ed6362db6d9e3a003f39ac4416fd7b4b3f | |
parent | 2f20defa7abaa77f92e0a7c1a6dad789c9963391 (diff) |
* test/mkmf/test_config.rb (TestMkmf): fix superclass mismatch.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39724 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | test/mkmf/base.rb | 2 | ||||
-rw-r--r-- | test/mkmf/test_config.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/mkmf/base.rb b/test/mkmf/base.rb index e1ae634537..f4f00ed534 100644 --- a/test/mkmf/base.rb +++ b/test/mkmf/base.rb @@ -8,7 +8,7 @@ RbConfig::CONFIG["extout"] = CONFIG["extout"] = $extout $INCFLAGS << " -I." $extout_prefix = "$(extout)$(target_prefix)/" -class TestMkmfBase < Test::Unit::TestCase +class TestMkmf < Test::Unit::TestCase MKMFLOG = proc {File.read("mkmf.log") rescue ""} class Capture diff --git a/test/mkmf/test_config.rb b/test/mkmf/test_config.rb index c0b2355ee1..645d84be0a 100644 --- a/test/mkmf/test_config.rb +++ b/test/mkmf/test_config.rb @@ -2,7 +2,7 @@ require 'test/unit' require 'mkmf' require_relative '../ruby/envutil' -class TestMkmf +class TestMkmf < Test::Unit::TestCase class TestConfig < Test::Unit::TestCase def test_dir_config bug8074 = '[Bug #8074]' |