aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/test_unit/model/templates/unit_test.rb
blob: 6f798798385a185e9d1cf1c63fe22c5df8007431 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require 'test_helper'

<% module_namespacing do -%>
class <%= class_name %>Test < ActiveSupport::TestCase
  # Replace this with your real tests.
  test "the truth" do
    assert true
  end
end
<% end -%>