discord-kagebot/src/test/kotlin/moe/kageru/kagebot/ConfigTest.kt

17 lines
415 B
Kotlin
Raw Normal View History

2019-06-08 21:14:57 +02:00
package moe.kageru.kagebot
2019-06-08 21:52:47 +02:00
import io.kotlintest.shouldNotBe
import io.kotlintest.specs.StringSpec
import moe.kageru.kagebot.config.RawConfig
2019-06-08 21:52:47 +02:00
class ConfigTest : StringSpec({
/*
2019-06-08 21:52:47 +02:00
"should properly parse default config" {
Config.config shouldNotBe null
Config.config.commands shouldNotBe null
2019-06-08 21:52:47 +02:00
}
*/
"should convert to raw config" {
RawConfig.config shouldNotBe null
}
2019-06-08 21:52:47 +02:00
})