aboutsummaryrefslogtreecommitdiffstats
path: root/railties/generators/model/templates/unit_test.rb
blob: cc8b2e5910b830b5c7146eb24d5853c444d4eab9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require File.dirname(__FILE__) + '/../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