tests: add mod actions controller test.

This commit is contained in:
evazion
2017-02-05 16:38:23 -06:00
parent 101a03e797
commit 30c3a52187

View File

@@ -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