antifed/backend/src/test/kotlin/ApplicationTest.kt
2025-05-11 11:13:56 +02:00

22 lines
393 B
Kotlin

package dev.svitan
import io.ktor.client.request.*
import io.ktor.http.*
import io.ktor.server.testing.*
import kotlin.test.Test
import kotlin.test.assertEquals
class ApplicationTest {
@Test
fun testRoot() = testApplication {
application {
module()
}
client.get("/").apply {
assertEquals(HttpStatusCode.OK, status)
}
}
}