EmbeddedScript forking

This commit is contained in:
2020-12-09 13:05:56 -07:00
parent d31fe9f265
commit 6c6fcb23f7
2 changed files with 42 additions and 5 deletions

View File

@@ -8,6 +8,7 @@ import kiss.Prelude;
class DSLTestCase extends Test {
function testScript() {
new DSLScript().run();
new DSLScript().fork([() -> Assert.equals(5, 5), () -> Assert.equals(7, 7)]);
}
}