From 7d0a3681271b3e86e361c74375be195ebd897c9b Mon Sep 17 00:00:00 2001 From: normal Date: Thu, 5 Nov 2015 22:05:06 +0000 Subject: test/ruby/test_autoload: hoist out ruby_impl_require Having "require" implemented in Ruby is the common case nowadays with RubyGems, so ensure it is easy-to-reuse the same logic for future tests. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52459 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_autoload.rb | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) (limited to 'test/ruby/test_autoload.rb') diff --git a/test/ruby/test_autoload.rb b/test/ruby/test_autoload.rb index ed731388cd..719502d268 100644 --- a/test/ruby/test_autoload.rb +++ b/test/ruby/test_autoload.rb @@ -187,31 +187,34 @@ p Foo::Bar } end - def test_require_implemented_in_ruby_is_called + def ruby_impl_require Kernel.module_eval do; alias :old_require :require; end - called_with = [] Kernel.send :define_method, :require do |path| called_with << path old_require path end - - Tempfile.create(['autoload', '.rb']) {|file| - file.puts 'class AutoloadTest; end' - file.close - add_autoload(file.path) - begin - assert(Object::AutoloadTest) - ensure - remove_autoload_constant - end - assert_equal [file.path], called_with - } - + yield called_with ensure Kernel.module_eval do; alias :require :old_require; undef :old_require; end end + def test_require_implemented_in_ruby_is_called + ruby_impl_require do |called_with| + Tempfile.create(['autoload', '.rb']) {|file| + file.puts 'class AutoloadTest; end' + file.close + add_autoload(file.path) + begin + assert(Object::AutoloadTest) + ensure + remove_autoload_constant + end + assert_equal [file.path], called_with + } + end + end + def add_autoload(path) (@autoload_paths ||= []) << path ::Object.class_eval {autoload(:AutoloadTest, path)} -- cgit v1.2.3