PATH:
opt
/
alt
/
ruby34
/
share
/
gems
/
gems
/
bundler-2.6.9
/
lib
/
bundler
/
templates
/
newgem
/
test
/
test-unit
# frozen_string_literal: true require "test_helper" class <%= config[:constant_name] %>Test < Test::Unit::TestCase test "VERSION" do assert do ::<%= config[:constant_name] %>.const_defined?(:VERSION) end end test "something useful" do assert_equal("expected", "actual") end end
[-] test_helper.rb.tt
[edit]
[-] newgem_test.rb.tt
[edit]
[+]
..