class FakeFS::FakeSymlink

def entry

def entry
  FileSystem.find(target)
end

def initialize(target)

def initialize(target)
  @target = target
end

def inspect

def inspect
  "symlink(#{target.split('/').last})"
end

def method_missing(*args, &block)

def method_missing(*args, &block)
  entry.send(*args, &block)
end

def respond_to?(method)

def respond_to?(method)
  entry.respond_to?(method)
end