1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/spec/method/patcher_spec.rb
2015-03-10 22:49:29 +02:00

34 lines
1 KiB
Ruby

require_relative '../helper'
describe Pry::Method::Patcher do
before do
@x = Object.new
def @x.test; :before; end
@method = Pry::Method(@x.method(:test))
end
it "should change the behaviour of the method" do
expect(@x.test).to eq :before
@method.redefine "def @x.test; :after; end\n"
expect(@x.test).to eq :after
end
it "should return a new method with new source" do
expect(@method.source.strip).to eq "def @x.test; :before; end"
expect(@method.redefine("def @x.test; :after; end\n").
source.strip).to eq "def @x.test; :after; end"
end
it "should change the source of new Pry::Method objects" do
@method.redefine "def @x.test; :after; end\n"
expect(Pry::Method(@x.method(:test)).source.strip).to eq "def @x.test; :after; end"
end
it "should preserve visibility" do
class << @x; private :test; end
expect(@method.visibility).to eq :private
@method.redefine "def @x.test; :after; end\n"
expect(Pry::Method(@x.method(:test)).visibility).to eq :private
end
end