aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb
blob: 852b5d2529684dc8aceb130eed076a25c3d33c5f (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_kind_of <%= class_name %>, <%= table_name %>(:first)
  end
end