summaryrefslogtreecommitdiff
path: root/tool/test/testunit/test4test_redefinition.rb
blob: ad3c5e7113a873001509731417474b2b9c9b2ca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: false
$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