File: __method___spec.rb

package info (click to toggle)
jruby 9.1.17.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 71,608 kB
  • sloc: ruby: 505,916; java: 237,875; xml: 31,161; ansic: 7,152; yacc: 4,605; sh: 887; makefile: 108; jsp: 48; tcl: 40
file content (40 lines) | stat: -rw-r--r-- 1,190 bytes parent folder | download | duplicates (2)
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
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/__method__', __FILE__)

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

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

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

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

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

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

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

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

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