online_doc_test.rb
295 Bytes
require_relative "../test_helper"
class OnlineDocTest < ActionDispatch::IntegrationTest
def test_404_section
get '/doc/something-very-unlikely'
assert_response 404
end
def test_404_topic
get '/doc/something-very-unlikely/unexisting-topic'
assert_response 404
end
end