summaryrefslogtreecommitdiff
path: root/test/-ext-/load
diff options
context:
space:
mode:
Diffstat (limited to 'test/-ext-/load')
-rw-r--r--test/-ext-/load/test_dot_dot.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/-ext-/load/test_dot_dot.rb b/test/-ext-/load/test_dot_dot.rb
new file mode 100644
index 0000000000..82aa10a95f
--- /dev/null
+++ b/test/-ext-/load/test_dot_dot.rb
@@ -0,0 +1,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