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

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