symlink needs respond_to? if method_missing is used

This commit is contained in:
Matt Freels 2009-07-28 00:20:06 -07:00
parent 506a33fed4
commit 46b62a54d9

View File

@ -18,5 +18,9 @@ module FakeFS
def method_missing(*args, &block)
entry.send(*args, &block)
end
def respond_to?(method)
entry.respond_to?(method)
end
end
end