krontab/src/commonTest/kotlin/dev/inmo/krontab/utils/RunTest.kt

9 lines
206 B
Kotlin
Raw Normal View History

2020-11-21 08:58:19 +00:00
package dev.inmo.krontab.utils
2020-01-13 04:15:01 +00:00
import kotlinx.coroutines.CoroutineScope
/**
* Workaround to use suspending functions in unit tests
*/
expect fun runTest(block: suspend (scope : CoroutineScope) -> Unit)