aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb
blob: ec8010c8ae38c7e268de98f9d8a0d2d536da56b9 (plain) (blame)
1
2
3
4
5
6
7
8
require File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../test_helper'

class <%= class_name %>Test < Test::Unit::TestCase
  # Replace this with your real tests.
  def test_truth
    assert true
  end
end