tests: add related tags controller tests.

This commit is contained in:
evazion
2017-02-05 16:34:07 -06:00
parent 423dfc13b8
commit 101a03e797

View File

@@ -1,7 +1,12 @@
require 'test_helper'
class RelatedTagsControllerTest < ActionController::TestCase
# test "the truth" do
# assert true
# end
context "The related tags controller" do
context "show action" do
should "work" do
get :show, { query: "touhou" }
assert_response :success
end
end
end
end