summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/inspect_spec.rb
blob: e60f7576c5457270031b9a6e71061440d5b19821 (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
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "Kernel#inspect" do
  it "returns a String" do
    Object.new.inspect.should be_an_instance_of(String)
  end

  it "does not call #to_s if it is defined" do
    # We must use a bare Object here
    obj = Object.new
    inspected = obj.inspect

    obj.stub!(:to_s).and_return("to_s'd")

    obj.inspect.should == inspected
  end

  it "returns a String with the object class and object_id encoded" do
    obj = Object.new
    obj.inspect.should =~ /^#<Object:0x[0-9a-f]+>$/
  end

  it "returns a String for an object without #class method" do
    obj = Object.new
    class << obj
      undef_method :class
    end
    obj.inspect.should be_kind_of(String)
  end

  ruby_version_is "3.5" do
    it "calls #instance_variables_to_inspect private method to know which variables to display" do
      obj = Object.new
      obj.instance_eval do
        @host = "localhost"
        @user = "root"
        @password = "hunter2"
      end
      obj.singleton_class.class_eval do
        private def instance_variables_to_inspect = %i[@host @user @does_not_exist]
      end

      inspected = obj.inspect.sub(/^#<Object:0x[0-9a-f]+/, '#<Object:0x00')
      inspected.should == '#<Object:0x00 @host="localhost", @user="root">'

      obj = Object.new
      obj.instance_eval do
        @host = "localhost"
        @user = "root"
        @password = "hunter2"
      end
      obj.singleton_class.class_eval do
        private def instance_variables_to_inspect = []
      end

      inspected = obj.inspect.sub(/^#<Object:0x[0-9a-f]+/, '#<Object:0x00')
      inspected.should == "#<Object:0x00>"
    end
  end
end