summaryrefslogtreecommitdiff
path: root/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt
blob: e653993006ae2ff578685189631c0d3fd79ecb9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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