File: protected_methods_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 (69 lines) | stat: -rw-r--r-- 2,596 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
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
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
require File.expand_path('../../../fixtures/reflection', __FILE__)

# TODO: rewrite

# The reason why having include() is to show the specification explicitly.
# You should use have_protected_method() with the exception of this spec.
describe "Kernel#protected_methods" do
  it "returns a list of the names of protected methods accessible in the object" do
    KernelSpecs::Methods.protected_methods(false).sort.should include(:juu_ichi)
    KernelSpecs::Methods.new.protected_methods(false).should include(:ku)
  end

  it "returns a list of the names of protected methods accessible in the object and from its ancestors and mixed-in modules" do
    l1 = KernelSpecs::Methods.protected_methods(false)
    l2 = KernelSpecs::Methods.protected_methods
    (l1 & l2).should include(:juu_ichi)
    KernelSpecs::Methods.new.protected_methods.should include(:ku)
  end

  it "returns methods mixed in to the metaclass" do
    m = KernelSpecs::Methods.new
    m.extend(KernelSpecs::Methods::MetaclassMethods)
    m.protected_methods.should include(:nopeeking)
  end
end

describe :kernel_protected_methods_supers, shared: true do
  it "returns a unique list for an object extended by a module" do
    m = ReflectSpecs.oed.protected_methods(*@object)
    m.select { |x| x == :pro }.sort.should == [:pro]
  end

  it "returns a unique list for a class including a module" do
    m = ReflectSpecs::D.new.protected_methods(*@object)
    m.select { |x| x == :pro }.sort.should == [:pro]
  end

  it "returns a unique list for a subclass of a class that includes a module" do
    m = ReflectSpecs::E.new.protected_methods(*@object)
    m.select { |x| x == :pro }.sort.should == [:pro]
  end
end

describe :kernel_protected_methods_with_falsy, shared: true do
  it "returns a list of protected methods in without its ancestors" do
    ReflectSpecs::F.protected_methods(@object).select{|m|/_pro\z/ =~ m}.sort.should == [:ds_pro, :fs_pro]
    ReflectSpecs::F.new.protected_methods(@object).should == [:f_pro]
  end
end

describe "Kernel#protected_methods" do
  describe "when not passed an argument" do
    it_behaves_like :kernel_protected_methods_supers, nil, []
  end

  describe "when passed true" do
    it_behaves_like :kernel_protected_methods_supers, nil, true
  end

  describe "when passed false" do
    it_behaves_like :kernel_protected_methods_with_falsy, nil, false
  end

  describe "when passed nil" do
    it_behaves_like :kernel_protected_methods_with_falsy, nil, nil
  end
end