Sha256: c7357efed8f673575e890b9b1d9679d115c433cf89141f258eb843501ae2cf11
Contents?: true
Size: 1.16 KB
Versions: 2
Compression:
Stored size: 1.16 KB
Contents
# Test of additional proc and method require 'test/unit' require_relative '../../ext/thread_frame' if '1.9.2' == RUBY_VERSION class TestProcAndMethod < Test::Unit::TestCase def test_proc_iseq assert_equal(true, Proc.new{|x,y| x+y}.iseq.is_a?(RubyVM::InstructionSequence)) end def test_method_extra # skip "Figure out what's up with on 1.9.3" if # '1.9.3' == RUBY_VERSION m = self.method :test_method_extra assert_equal(1, m.alias_count) assert_equal(:test_method_extra, m.original_id) self.instance_eval { assert_equal(1, m.alias_count) } assert_equal(1, m.alias_count) self.instance_eval { alias :two :test_method_extra } assert_equal(2, m.alias_count) assert_equal(3, self.method(:test_method_extra).alias_count) assert_equal(3, m.alias_count) assert_equal(4, self.method(:two).alias_count) assert_equal(:test_method_extra, self.method(:two).original_id) assert_equal("instruction sequence", method(:test_method_extra).type) assert_equal("C function", File.method(:basename).type) # Array.map is an unbound method assert_equal("C function", Array.instance_method(:map).type) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rb-threadframe-0.41 | test/unit/test-proc.rb |
rb-threadframe-0.40 | test/unit/test-proc.rb |