instiki/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/unit_test.rb

9 lines
159 B
Ruby
Raw Normal View History

2007-01-22 14:43:50 +01:00
require 'test/unit'
class <%= class_name %>Test < Test::Unit::TestCase
# Replace this with your real tests.
test "the truth" do
assert true
2007-01-22 14:43:50 +01:00
end
end