class ChefSpec::FileCachePathProxy
Attributes
file_cache_path[R]
Public Class Methods
new()
click to toggle source
# File lib/chefspec/file_cache_path_proxy.rb, line 10 def initialize @file_cache_path = Dir.mktmpdir(%w{chefspec file_cache_path}) at_exit { FileUtils.rm_rf(@file_cache_path) } end