1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/generators/model/templates/unit_test.rb

11 lines
243 B
Ruby

require File.dirname(__FILE__) + '/../test_helper'
require '<%= file_name %>'
class <%= class_name %>Test < Test::Unit::TestCase
fixtures :<%= table_name %>
# Replace this with your real tests.
def test_truth
assert true
end
end