summaryrefslogtreecommitdiff
path: root/src/jsTest/kotlin/io
diff options
context:
space:
mode:
authornea <romangraef@gmail.com>2021-08-13 15:46:45 +0200
committernea <romangraef@gmail.com>2021-08-13 15:50:03 +0200
commite4753338d60396c00f80b494366b2869f8541944 (patch)
tree8abad784ff571d94a05b1432d0d724f4f6417a3b /src/jsTest/kotlin/io
parenta485112be491dc71c6b6951b3a65827f89ab3406 (diff)
downloadwebos-e4753338d60396c00f80b494366b2869f8541944.tar.gz
webos-e4753338d60396c00f80b494366b2869f8541944.tar.bz2
webos-e4753338d60396c00f80b494366b2869f8541944.zip
tests und shit
Diffstat (limited to 'src/jsTest/kotlin/io')
-rw-r--r--src/jsTest/kotlin/io/PathTest.kt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jsTest/kotlin/io/PathTest.kt b/src/jsTest/kotlin/io/PathTest.kt
index 73667a6..8ea577c 100644
--- a/src/jsTest/kotlin/io/PathTest.kt
+++ b/src/jsTest/kotlin/io/PathTest.kt
@@ -1,7 +1,7 @@
package io
+import io.kotest.assertions.assertSoftly
import io.kotest.core.spec.style.FunSpec
-import io.kotest.matchers.booleans.shouldBeFalse
import io.kotest.matchers.types.shouldBeTypeOf
class PathTest : FunSpec({
@@ -16,7 +16,7 @@ class PathTest : FunSpec({
Path.ofShell("a", "b", userHome = homeDir),
Path.ofShell(listOf("a", "b"), userHome = homeDir),
).forEach {
- it.shouldBeTypeOf<Path.Relative>()
+ assertSoftly(it) { shouldBeTypeOf<Path.Relative>() }
}
}
test("recognize absolute paths as such") {
@@ -25,7 +25,7 @@ class PathTest : FunSpec({
Path.of("/"),
Path.ofShell("/b/c", userHome = homeDir),
).forEach {
- it.shouldBeTypeOf<Path.Absolute>()
+ assertSoftly(it) { shouldBeTypeOf<Path.Absolute>() }
}
}
})