aboutsummaryrefslogtreecommitdiffstats
path: root/test/testunit/test_redefinition.rb
blob: 612661ee656725efccfa8ed0f5384b9c238dc42a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'test/unit'

class TestHideSkip < Test::Unit::TestCase
  def test_hideskip
    test_out, o = IO.pipe
    spawn(*@options[:ruby], "#{File.dirname(__FILE__)}/test4test_redefinition.rb", out: File::NULL, err: o)
    o.close

    assert_match /^test\/unit warning: method TestForTestRedefinition#test_redefinition is redefined$/,
                 test_out.read
    test_out.close
  end
end