class ChefSpec::FileCachePathProxy

def initialize

def initialize
  @file_cache_path = Dir.mktmpdir(%w{chefspec file_cache_path})
  at_exit { FileUtils.rm_rf(@file_cache_path) }
end