summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/__callee___spec.rb
blob: 3059ea8b5778b397afb1ff5f03465eedf158db6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
require_relative '../../spec_helper'
require_relative 'fixtures/__callee__'

describe "Kernel.__callee__" do
  it "returns the current method, even when aliased" do
    KernelSpecs::CalleeTest.new.f.should == :f
  end

  it "returns the aliased name when aliased method" do
    KernelSpecs::CalleeTest.new.g.should == :g
  end

  it "returns the caller from blocks too" do
    KernelSpecs::CalleeTest.new.in_block.should == [:in_block, :in_block]
  end

  it "returns the caller from define_method too" do
    KernelSpecs::CalleeTest.new.dm.should == :dm
  end

  it "returns the caller from block inside define_method too" do
    KernelSpecs::CalleeTest.new.dm_block.should == [:dm_block, :dm_block]
  end

  it "returns method name even from send" do
    KernelSpecs::CalleeTest.new.from_send.should == :from_send
  end

  it "returns method name even from eval" do
    KernelSpecs::CalleeTest.new.from_eval.should == :from_eval
  end

  it "returns nil from inside a class body" do
    KernelSpecs::CalleeTest.new.from_class_body.should == nil
  end

  it "returns nil when not called from a method" do
    __callee__.should == nil
  end

  it "returns the caller from a define_method called from the same class" do
    c = Class.new do
      define_method(:f) { 1.times{ break __callee__ } }
      def g; f end
    end
    c.new.g.should == :f
  end
end