diff --git a/test/functional/mod_actions_controller_test.rb b/test/functional/mod_actions_controller_test.rb new file mode 100644 index 000000000..b4b8fcecc --- /dev/null +++ b/test/functional/mod_actions_controller_test.rb @@ -0,0 +1,12 @@ +require 'test_helper' + +class ModActionsControllerTest < ActionController::TestCase + context "The mod actions controller" do + context "index action" do + should "work" do + get :index + assert_response :success + end + end + end +end