aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_autoload.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-09 06:46:31 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-09 06:46:31 +0000
commit31a6d508635815d24ced07c5a65273cb0fcf54de (patch)
tree4aa96fb05b18df3231f438cbee3231241fc38d8f /test/ruby/test_autoload.rb
parentbc664b878c9992462f92e7f08fdd534dd08c69b3 (diff)
downloadruby-31a6d508635815d24ced07c5a65273cb0fcf54de.tar.gz
* load.c (rb_feature_provided): fixed for autoloading extension
library without suffix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24817 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_autoload.rb')
-rw-r--r--test/ruby/test_autoload.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/ruby/test_autoload.rb b/test/ruby/test_autoload.rb
new file mode 100644
index 0000000000..c2039086cf
--- /dev/null
+++ b/test/ruby/test_autoload.rb
@@ -0,0 +1,12 @@
+require 'test/unit'
+require_relative 'envutil'
+
+class TestAutoload < Test::Unit::TestCase
+ def test_autoload_so
+ # Continuation is always available, unless excluded intentionally.
+ assert_in_out_err([], <<-INPUT, [], [])
+ autoload :Continuation, "continuation"
+ begin Continuation; rescue LoadError; end
+ INPUT
+ end
+end