require'test_helper'<% module_namespacing do-%>class <%= class_name %>ControllerTest<ActionController::TestCase<% if actions.empty?-%> # test "the truth" do # assert true # end<% else -%><% for actioninactions-%> test "should get <%= action %>" do get :<%= action %> assert_response :success end<% end -%><% end -%>end<% end -%>