aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/test_unit/model/templates/unit_test.rb
blob: 5f1ffeb33b6ad1ed531c05bf1daee670f4b8d4dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'test_helper'

<% module_namespacing do -%>
class <%= class_name %>Test < ActiveSupport::TestCase
  # test "the truth" do
  #   assert true
  # end
end
<% end -%>