1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
require 'spec_helper'
module Bogus
describe MakesSubstituteMethods do
class SampleForCopyingMethods
def self.foo(name, value = "hello", *rest, &block)
"this is the method body"
end
end
let(:method_stringifier) { isolate(MethodStringifier) }
let(:makes_substitute_methods) { isolate(MakesSubstituteMethods) }
it "makes a copy of the method with its params and adds recording" do
copy = makes_substitute_methods.stringify(SampleForCopyingMethods.method(:foo))
expect(copy).to eq <<-EOF
def foo(name, value = Bogus::DefaultValue, *rest, &block)
__record__(:foo, name, value, *rest, &block)
end
EOF
end
end
end
|