summaryrefslogtreecommitdiff
path: root/test/testunit/test4test_sorting.rb
blob: 1f7f4a323e0b38a6bf5a97afa6fa2abf3a80d058 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'test/unit'

class TestForTestHideSkip < Test::Unit::TestCase
  def test_c
    skip "do nothing"
  end

  def test_b
    assert_equal true, false
  end

  def test_a
    raise
  end
end