This file is indexed.

/usr/lib/ruby/vendor_ruby/rspec/core/mocking_adapters/null.rb is in ruby-rspec-core 3.7.0c1e0m0s1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
module RSpec
  module Core
    module MockingAdapters
      # @private
      module Null
        def setup_mocks_for_rspec; end

        def verify_mocks_for_rspec; end

        def teardown_mocks_for_rspec; end
      end
    end
  end
end