17 lines
392 B
Kotlin
17 lines
392 B
Kotlin
package dev.fyloz.backup
|
|
|
|
import io.ktor.server.testing.*
|
|
import kotlin.test.Test
|
|
|
|
class ApplicationTest {
|
|
@Test
|
|
fun testRoot() = testApplication {
|
|
// application {
|
|
// configureApiRouting()
|
|
// }
|
|
// client.get("/").apply {
|
|
// assertEquals(HttpStatusCode.OK, status)
|
|
// assertEquals("Hello World!", bodyAsText())
|
|
// }
|
|
}
|
|
} |