私はこのようなものを持っています:
class Something
def some_method
%x{xyz}
end
end
そしてスペックでは:
describe Something do
describe "#some_method" do
it "should execute xyz command in a subshell" do
x = Something.new
#What should come here?
x.some_method
end
end
end
「システム」をモックする方法を知っています。しかし、私の質問は「%x」に固有のものです。では、%xをモックする方法は?