summaryrefslogtreecommitdiff
path: root/test/-ext-/win32
diff options
context:
space:
mode:
Diffstat (limited to 'test/-ext-/win32')
-rw-r--r--test/-ext-/win32/test_dln.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/-ext-/win32/test_dln.rb b/test/-ext-/win32/test_dln.rb
new file mode 100644
index 0000000000..7ab912af7f
--- /dev/null
+++ b/test/-ext-/win32/test_dln.rb
@@ -0,0 +1,13 @@
+require 'test/unit'
+require_relative '../../ruby/envutil'
+
+module Bug
+ module Win32
+ class TestDln < Test::Unit::TestCase
+ def test_check_imported
+ bug = '[Bug #6303]'
+ assert_in_out_err(['-r-test-/win32/dln', '-eexit'], '', [], [], bug, timeout: 10)
+ end
+ end
+ end
+end