aboutsummaryrefslogtreecommitdiffstats
path: root/railties/generators/templates/model_test.erb
blob: a3ad2b72fbbffdc7113fdfb772076bfd89b00703 (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