mongodb/mongo-ruby-driver

View on GitHub
profile/driver_bench/bson/deep/base.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require_relative '../base'

module Mongo
  module DriverBench
    module BSON
      module Deep
        # Abstract superclass for deep BSON benchmarks.
        #
        # @api private
        class Base < Mongo::DriverBench::BSON::Base
          private

          # @return [ String ] the name of the file to use as the
          #   dataset for these benchmarks.
          def file_name
            'extended_bson/deep_bson.json'
          end
        end
      end
    end
  end
end