heya - got the following test failing, I think aft...
# ktor
l
heya - got the following test failing, I think after updating:
Copy code
class ApplicationTest {
    @test
    fun testRequest() = withTestApplication(Application::main) {
        with(handleRequest(HttpMethod.Get, "/")) {
            assertEquals(HttpStatusCode.OK, response.status())
            assertTrue(response.content!!.startsWith("<!DOCTYPE html>"))
        }
        with(handleRequest(HttpMethod.Get, "/favicon.ico")) {
            assertFalse(requestHandled)
        }
        with(handleRequest(<http://HttpMethod.Post|HttpMethod.Post>, "/")) {
            assertTrue(requestHandled)
        }
    }
}