aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/test_unit/integration/templates/integration_test.rb
blob: 65708b6c3bd7c19b0793c506c26d1e9e7c1b7a9c (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 < ActionDispatch::IntegrationTest
  # test "the truth" do
  #   assert true
  # end
end
<% end -%>