summaryrefslogtreecommitdiff
path: root/test/-ext-/load/test_dot_dot.rb
blob: 82aa10a95f0f7b3e10089fa7142fcbb7d4a37170 (plain)
1
2
3
4
5
6
7
8
9
10
require 'test/unit'

class Test_DotDot < Test::Unit::TestCase
  def test_load_dot_dot
    feature = '[ruby-dev:41774]'
    assert_nothing_raised(LoadError, feature) {
      require '-test-/load/dot.dot/dot.dot'
    }
  end
end