instiki/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/unit_test.rb
2007-02-09 17:12:31 -06:00

11 lines
250 B
Ruby

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