X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/6290405336817cd282ad5062ce3fc3774ccf61e4..43ce6e68c09cdb4e66a7af9849e36c9406d2eb05:/test/controllers/relations_controller_test.rb?ds=sidebyside diff --git a/test/controllers/relations_controller_test.rb b/test/controllers/relations_controller_test.rb index 926d95026..bdcbd2fd7 100644 --- a/test/controllers/relations_controller_test.rb +++ b/test/controllers/relations_controller_test.rb @@ -36,4 +36,15 @@ class RelationsControllerTest < ActionDispatch::IntegrationTest sidebar_browse_check :relation_path, member.id, "browse/feature" assert_select "a[href='#{relation_path relation}']", :count => 1 end + + def test_show_timeout + relation = create(:relation) + with_settings(:web_timeout => -1) do + get relation_path(relation) + end + assert_response :error + assert_template :layout => "map" + assert_dom "h2", "Timeout Error" + assert_dom "p", /#{Regexp.quote("the relation with the id #{relation.id}")}/ + end end