lib/kitchen/driver/base.rb in test-kitchen-1.13.2 vs lib/kitchen/driver/base.rb in test-kitchen-1.14.0
- old
+ new
@@ -117,9 +117,16 @@
#
def self.kitchen_driver_api_version(version)
@api_version = version
end
+ # Cache directory that a driver could implement to inform the provisioner
+ # that it can leverage it internally
+ #
+ # @return path [String] a path of the cache directory
+ def cache_directory
+ end
+
private
# Intercepts any bare #puts calls in subclasses and issues an INFO log
# event instead.
#