class FakeFS::Pathname

def realpath(basedir = nil)


called.
All components of the pathname must exist when this method is

filesystem not containing symlinks or useless dots.
Returns the real (absolute) pathname of +self+ in the actual
def realpath(basedir = nil)
  self.class.new(File.realpath(@path, basedir))
end