Files
danbooru/test/functional/dtext_links_controller_test.rb
2020-03-30 12:36:06 -05:00

13 lines
306 B
Ruby

require "test_helper"
class DtextLinksControllerTest < ActionDispatch::IntegrationTest
context "index action" do
should "work" do
@user = create(:user)
@wiki = as(@user) { create(:wiki_page, body: "[[test]]") }
get dtext_links_path
assert_response :success
end
end
end