aboutsummaryrefslogtreecommitdiffstats
path: root/railties/generators/model/templates/unit_test.rb
blob: 6162d4cf9613b804591c7426b33464c1eac08a43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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