summaryrefslogtreecommitdiff
path: root/test/testunit/test4test_redefinition.rb
blob: 77cfd4501516065d25c0d5e2b41cc5393a692713 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"

require 'test/unit'

class TestForTestRedefinition < Test::Unit::TestCase
  def test_redefinition
    skip "do nothing (1)"
  end

  def test_redefinition
    skip "do nothing (2)"
  end
end