summaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
authorRyan Davis <ryand@zenspider.com>2012-12-15 16:40:06 -0800
committerRyan Davis <ryand@zenspider.com>2012-12-15 16:40:06 -0800
commit5160c75cf384ae144e1b1e0484b900f143912dc1 (patch)
treebdf100f3bb72c90db2e6ff982fe6a471d1bd6695 /template
parent60d845c54dfd2a48383f59147370027f27a8c0cc (diff)
downloadhoe-5160c75cf384ae144e1b1e0484b900f143912dc1.tar.gz
+ Switch default template test file to minitest
[git-p4: depot-paths = "//src/hoe/dev/": change = 8060]
Diffstat (limited to 'template')
-rw-r--r--template/test/file_name.rb.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/template/test/file_name.rb.erb b/template/test/file_name.rb.erb
index e4d2eb8..384bcdd 100644
--- a/template/test/file_name.rb.erb
+++ b/template/test/file_name.rb.erb
@@ -1,8 +1,8 @@
-require "test/unit"
+require "minitest/autorun"
require "<%= file_name %>"
<%= make_sub_modules test_klass %>
-class <%= test_klass %> < Test::Unit::TestCase
+class <%= test_klass %> < Minitest::Unit::TestCase
def test_sanity
flunk "write tests or I will kneecap you"
end