diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-11-26 12:18:49 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-11-26 12:18:49 +0000 |
commit | 3f37ba11a1911d10ddfc3da16c4d558501199a43 (patch) | |
tree | 460d13d5a69dffa1be44822fdbc5ca12f85d6a3b /test/inlinetest.rb | |
parent | 262245b0c1a3d5d823fd36c2b688121649fd9e18 (diff) | |
download | ruby-3f37ba11a1911d10ddfc3da16c4d558501199a43.tar.gz |
* test/inlinetest.rb: removed unused test helper.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48589 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/inlinetest.rb')
-rw-r--r-- | test/inlinetest.rb | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/test/inlinetest.rb b/test/inlinetest.rb deleted file mode 100644 index 46287364a9..0000000000 --- a/test/inlinetest.rb +++ /dev/null @@ -1,55 +0,0 @@ -module InlineTest - def eval_part(libname, sep, part) - path = libpath(libname) - program = File.open(path) { |f| f.read } - mainpart, endpart = program.split(sep) - if endpart.nil? - raise RuntimeError.new("No #{part} part in the library '#{path}'") - end - eval(endpart, TOPLEVEL_BINDING, path, mainpart.count("\n")+1) - end - module_function :eval_part - - def loadtest(libname) - require(libname) - in_critical do - in_progname(libpath(libname)) do - eval_part(libname, /^(?=if\s+(?:\$0\s*==\s*__FILE__|__FILE__\s*==\s*\$0)(?:[\#\s]|$))/, '$0 == __FILE__') - end - end - end - module_function :loadtest - - def loadtest__END__part(libname) - require(libname) - eval_part(libname, /^__END__\r?$/, '__END__') - end - module_function :loadtest__END__part - - @mutex = Mutex.new - - def self.in_critical(&block) - @mutex.synchronize(&block) - end - - def self.in_progname(progname) - $program_name = progname - alias $0 $program_name - begin - yield - ensure - alias $0 $PROGRAM_NAME - end - end - - def self.libpath(libname) - libpath = nil - $:.find do |path| - File.file?(testname = File.join(path, libname)) && libpath = testname - end - if libpath.nil? - raise RuntimeError.new("'#{libname}' not found") - end - libpath - end -end |