File: bson.rb

package info (click to toggle)
ruby-mongo 2.23.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,020 kB
  • sloc: ruby: 110,810; makefile: 5
file content (16 lines) | stat: -rw-r--r-- 320 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require_relative 'bson/deep'
require_relative 'bson/flat'
require_relative 'bson/full'

module Mongo
  module DriverBench
    module BSON
      ALL = [ *Deep::ALL, *Flat::ALL, *Full::ALL ].freeze

      # BSONBench consists of all BSON micro-benchmarks
      BENCH = ALL
    end
  end
end