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

11 lines
250 B
Ruby
Raw Normal View History

2007-01-22 14:43:50 +01:00
require File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../test_helper'
class <%= class_name %>Test < Test::Unit::TestCase
fixtures :<%= table_name %>
# Replace this with your real tests.
def test_truth
assert true
end
end