# File lib/chef_zero/data_store/memory_store_v2.rb, line 86
      def get(path, request=nil)
        value = _get(path)
        if value.is_a?(Hash)
          raise "get() called on directory #{path.join('/')}"
        end
        value
      end