2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../spec_helper'
|
|
|
|
require_relative 'fixtures/private'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
describe "The private keyword" do
|
|
|
|
it "marks following methods as being private" do
|
|
|
|
a = Private::A.new
|
|
|
|
a.methods.should_not include(:bar)
|
2019-07-27 06:40:09 -04:00
|
|
|
-> { a.bar }.should raise_error(NoMethodError)
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
b = Private::B.new
|
|
|
|
b.methods.should_not include(:bar)
|
2019-07-27 06:40:09 -04:00
|
|
|
-> { b.bar }.should raise_error(NoMethodError)
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# def expr.meth() methods are always public
|
|
|
|
it "has no effect on def expr.meth() methods" do
|
|
|
|
Private::B.public_defs_method.should == 0
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is overridden when a new class is opened" do
|
|
|
|
c = Private::B::C.new
|
|
|
|
c.methods.should include(:baz)
|
|
|
|
c.baz
|
|
|
|
Private::B.public_class_method1.should == 1
|
2019-07-27 06:40:09 -04:00
|
|
|
-> { Private::B.private_class_method1 }.should raise_error(NoMethodError)
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "is no longer in effect when the class is closed" do
|
|
|
|
b = Private::B.new
|
|
|
|
b.methods.should include(:foo)
|
|
|
|
b.foo
|
|
|
|
end
|
|
|
|
|
|
|
|
it "changes visibility of previously called method" do
|
|
|
|
klass = Class.new do
|
|
|
|
def foo
|
|
|
|
"foo"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
f = klass.new
|
|
|
|
f.foo
|
|
|
|
klass.class_eval do
|
|
|
|
private :foo
|
|
|
|
end
|
2019-07-27 06:40:09 -04:00
|
|
|
-> { f.foo }.should raise_error(NoMethodError)
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
2019-02-07 11:35:33 -05:00
|
|
|
it "changes visibility of previously called methods with same send/call site" do
|
2017-05-07 08:04:49 -04:00
|
|
|
g = ::Private::G.new
|
2019-07-27 06:40:09 -04:00
|
|
|
-> {
|
2017-05-07 08:04:49 -04:00
|
|
|
2.times do
|
|
|
|
g.foo
|
|
|
|
module ::Private
|
|
|
|
class G
|
|
|
|
private :foo
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
}.should raise_error(NoMethodError)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "changes the visibility of the existing method in the subclass" do
|
|
|
|
::Private::A.new.foo.should == 'foo'
|
2019-07-27 06:40:09 -04:00
|
|
|
-> { ::Private::H.new.foo }.should raise_error(NoMethodError)
|
2017-05-07 08:04:49 -04:00
|
|
|
::Private::H.new.send(:foo).should == 'foo'
|
|
|
|
end
|
|
|
|
end
|