# File test/test_document.rb, line 756 def test_GET_foo_not_found @folder.mount(self, '/foo') @request.method = 'GET' @request.path = '/bar' @request.version = 'HTTP/1.1' done = false begin @folder.publish('', @request, @response, @logger) rescue Rucy::HTTPError assert_equal(404, $!.status) # Not Found assert(0, @publish_call) assert_match(@log_debug, /not mounted/) done = true end assert(done) end