Files
danbooru/test/functional/mod_actions_controller_test.rb
2017-02-06 18:48:36 -06:00

13 lines
258 B
Ruby

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