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

13 lines
347 B
Ruby

require 'test_helper'
class SourcesControllerTest < ActionController::TestCase
context "The sources controller" do
context "show action" do
should "work" do
get :show, { url: "http://www.pixiv.net/member_illust.php?mode=medium&illust_id=14901720", format: "json" }
assert_response :success
end
end
end
end