Sha256: 5e0e35ba7f37f61142bbe3a2a1e88c193b7984ce34d27da341a77912b3771880

Contents?: true

Size: 1.75 KB

Versions: 6

Compression:

Stored size: 1.75 KB

Contents

require 'test/unit'
require 'rbconfig'

dir = File.dirname(__FILE__)
$:.unshift(dir) if not $:.include?(dir)
$:.unshift("#{dir}/../lib") if not $:.include?("#{dir}/../lib")
$:.unshift("#{dir}/../ext") if not $:.include?("#{dir}/../ext")

require 'internal/method'

require "node_samples"

$stdout.sync = true
$stderr.sync = true

class TC_Method < Test::Unit::TestCase
  module Foo
    def foo(n=1)
      # A fancy way to return 42
      if false then
        answer = 0
      else
        answer = 0
        (1..42).each do |i|
          answer += (i / i)
        end
      end
      return n * answer
    end
  end

  class MarshalMethodHelper
    include Foo
  end

  include Foo

  def test_method_node
    m = method(:foo)
    n = m.body
    if defined?(RubyVM::InstructionSequence) then
      # YARV
      assert n.class == RubyVM::InstructionSequence || # 1.9.2 and later
             n.class == Node::METHOD                   # 1.9.1 and earlier
    else
      # pre-YARV
      assert_equal Node::SCOPE, n.class
    end
  end

  def test_dump_method
    o = MarshalMethodHelper.new
    m = o.method(:foo)
    d = Marshal.dump(m)
  end

  def test_load_method
    o = MarshalMethodHelper.new
    m = o.method(:foo)
    d = Marshal.dump(m)
    m2 = Marshal.load(d)
    assert_equal m.call, m2.call
  end

  def test_dump_unbound_method
    o = MarshalMethodHelper.new
    u = o.method(:foo).unbind
    d = Marshal.dump(u)
  end

  def test_load_unbound_method
    o = MarshalMethodHelper.new
    u = o.method(:foo).unbind
    d = Marshal.dump(u)
    u2 = Marshal.load(d)
    m = u.bind(o)
    m2 = u.bind(o)
    assert_equal m.call, m2.call
  end

  def test_method_oid
    m = method(:foo)
    oid = m.method_oid
  end
end

if __FILE__ == $0 then
  # exit Test::Unit::AutoRunner.run
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruby-internal-0.8.5 test/test_method.rb
ruby-internal-0.8.4 test/test_method.rb
ruby-internal-0.8.3 test/test_method.rb
ruby-internal-0.8.2 test/test_method.rb
ruby-internal-0.8.1 test/test_method.rb
ruby-internal-0.8.0 test/test_method.rb