# File lib/fakefs/pathname.rb, line 311
      def mountpoint?
        stat1 = lstat
        begin
          stat2 = parent.lstat
          stat1.dev == stat2.dev && stat1.ino == stat2.ino ||
            stat1.dev != stat2.dev
        rescue Errno::ENOENT
          false
        end
      end