lib/kitchen/driver/base.rb in test-kitchen-1.12.0 vs lib/kitchen/driver/base.rb in test-kitchen-1.13.0

- old
+ new

@@ -50,9 +50,16 @@ # @param state [Hash] mutable instance and driver state # @raise [ActionFailed] if the action could not be completed def destroy(state) # rubocop:disable Lint/UnusedMethodArgument end + # Package an instance. + # + # @param state [Hash] mutable instance and driver state + # @raise [ActionFailed] if the action could not be completed + def package(state) # rubocop:disable Lint/UnusedMethodArgument + end + class << self # @return [Array<Symbol>] an array of action method names that cannot # be run concurrently and must be run in serial via a shared mutex attr_reader :serial_actions end