PATH:
opt
/
alt
/
ruby40
/
share
/
gems
/
gems
/
bundler-4.0.10
/
lib
/
bundler
/
templates
/
newgem
/
test
/
minitest
# frozen_string_literal: true require "test_helper" class <%= config[:minitest_constant_name] %> < Minitest::Test def test_that_it_has_a_version_number refute_nil ::<%= config[:constant_name] %>::VERSION end <%- if config[:ext] == 'rust' -%> def test_hello_world assert_equal "Hello earth, from Rust!", <%= config[:constant_name] %>.hello("world") end <%- else -%> def test_it_does_something_useful assert false end <%- end -%> end
[-] test_newgem.rb.tt
[edit]
[-] test_helper.rb.tt
[edit]
[+]
..