File.exist? should return a real boolean (nicer debugging)

This commit is contained in:
Chris Wanstrath 2009-07-21 22:31:36 -07:00
parent a7f20095f0
commit 1226acc4b3

View File

@ -117,7 +117,7 @@ module FakeFS
end
def self.exist?(path)
FileSystem.find(path) || false
!!FileSystem.find(path)
end
class << self