blob: f2af9f90e0bab0a36b89374665b7cfd56d194417 (
plain)
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
|