From 30c3a52187f8a903e4660d00387016e10648f957 Mon Sep 17 00:00:00 2001 From: evazion Date: Sun, 5 Feb 2017 16:38:23 -0600 Subject: [PATCH] tests: add mod actions controller test. --- test/functional/mod_actions_controller_test.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/functional/mod_actions_controller_test.rb 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