summaryrefslogtreecommitdiff
path: root/spec/ruby/core/hash/to_proc_spec.rb
blob: 8b7ddd5e001aef0a81296474890a3564ef5cfd36 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "Hash#to_proc" do
  before :each do
    @key = Object.new
    @value = Object.new
    @hash = { @key => @value }
    @default = Object.new
    @unstored = Object.new
  end

  it "returns an instance of Proc" do
    @hash.to_proc.should be_an_instance_of Proc
  end

  describe "the returned proc" do
    before :each do
      @proc = @hash.to_proc
    end

    ruby_version_is ""..."2.8" do
      it "is not a lambda" do
        @proc.should_not.lambda?
      end
    end

    ruby_version_is "2.8" do
      it "is a lambda" do
        @proc.should.lambda?
      end
    end

    it "raises ArgumentError if not passed exactly one argument" do
      -> {
        @proc.call
      }.should raise_error(ArgumentError)

      -> {
        @proc.call 1, 2
      }.should raise_error(ArgumentError)
    end

    context "with a stored key" do
      it "returns the paired value" do
        @proc.call(@key).should equal(@value)
      end
    end

    context "passed as a block" do
      it "retrieves the hash's values" do
        [@key].map(&@proc)[0].should equal(@value)
      end

      context "to instance_exec" do
        it "always retrieves the original hash's values" do
          hash = {foo: 1, bar: 2}
          proc = hash.to_proc

          hash.instance_exec(:foo, &proc).should == 1

          hash2 = {quux: 1}
          hash2.instance_exec(:foo, &proc).should == 1
        end
      end
    end

    context "with no stored key" do
      it "returns nil" do
        @proc.call(@unstored).should be_nil
      end

      context "when the hash has a default value" do
        before :each do
          @hash.default = @default
        end

        it "returns the default value" do
          @proc.call(@unstored).should equal(@default)
        end
      end

      context "when the hash has a default proc" do
        it "returns an evaluated value from the default proc" do
          @hash.default_proc = -> hash, called_with { [hash.keys, called_with] }
          @proc.call(@unstored).should == [[@key], @unstored]
        end
      end
    end

    it "raises an ArgumentError when calling #call on the Proc with no arguments" do
      -> { @hash.to_proc.call }.should raise_error(ArgumentError)
    end
  end
end