The new_controller_test.rb template in the new_controller generator has:
require 'test_helper'
class <%= module_name %>::<%= class_name%>Controller < ActionController::TestCase
# Replace this with your real tests.
test "the truth" do
assert true
end
end
Note this should be:
class <%= module_name %>::<%= class_name%>ControllerTest < ActionController::TestCase
The new_controller_test.rb template in the new_controller generator has:
Note this should be: