# File lib/fakefs/pathname.rb, line 979
      def find(*) # :yield: pathname
        require 'find'
        if @path == '.'
          Find.find(@path) { |f| yield self.class.new(f.sub(%r{/\A\./}, '')) }
        else
          Find.find(@path) { |f| yield self.class.new(f) }
        end
      end