summaryrefslogtreecommitdiff
path: root/lib/bundler/templates/newgem/test/minitest/newgem_test.rb.tt
blob: 9e005d69a80baff2327763b67ca071fe70ab90c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

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