summaryrefslogtreecommitdiff
path: root/test/-ext-/path_to_class/test_path_to_class.rb
blob: fdf4097fde16111b3d435cea6e46e16ba760791b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'test/unit'

class Test_PathToClass < Test::Unit::TestCase
  require '-test-/path_to_class/path_to_class'

  def test_path_to_class
    bug5691 = '[ruby-core:41410]'
    assert_raise(ArgumentError, bug5691) {
      Test_PathToClass.path_to_class("Test_PathToClass::Object")
    }
  end
end