This file is indexed.

/usr/lib/ruby/vendor_ruby/bundler/templates/newgem/test/newgem_test.rb.tt is in ruby-bundler 1.13.6-2.

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
require 'test_helper'

class <%= config[:constant_name] %>Test < Minitest::Test
  def test_that_it_has_a_version_number
    refute_nil ::<%= config[:constant_name] %>::VERSION
  end

  def test_it_does_something_useful
    assert false
  end
end