aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb
blob: 1c19cde76996680490c95325de509733dc1c7890 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                    



                                                  
                                      
                
                                                               
     
   
require File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../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