summaryrefslogtreecommitdiff
path: root/spec/ruby/core/method/public_spec.rb
blob: 20d0081a27f996a9ad4dda77290a508a0cbb56b4 (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
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "Method#public?" do
  ruby_version_is "3.1"..."3.2" do
    it "returns true when the method is public" do
      obj = MethodSpecs::Methods.new
      obj.method(:my_public_method).public?.should == true
    end

    it "returns false when the method is protected" do
      obj = MethodSpecs::Methods.new
      obj.method(:my_protected_method).public?.should == false
    end

    it "returns false when the method is private" do
      obj = MethodSpecs::Methods.new
      obj.method(:my_private_method).public?.should == false
    end
  end

  ruby_version_is "3.2" do
    it "has been removed" do
      obj = MethodSpecs::Methods.new
      obj.method(:my_public_method).should_not.respond_to?(:public?)
    end
  end
end