From ce174e0325729e32639a8d82b86d72ee05c699c8 Mon Sep 17 00:00:00 2001 From: mattia Date: Sat, 1 Mar 2025 18:12:03 +0100 Subject: [PATCH] feat: default choice --- InkBlot.Tests/MultiDivertTest.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/InkBlot.Tests/MultiDivertTest.cs b/InkBlot.Tests/MultiDivertTest.cs index 2b71ada..28b16f9 100644 --- a/InkBlot.Tests/MultiDivertTest.cs +++ b/InkBlot.Tests/MultiDivertTest.cs @@ -31,6 +31,15 @@ public class MultiDivertTest : TestBase ]); } + [Fact] + public void TestDefaultChoice() + { + var storyNodes = MyParseText("->"); + storyNodes.ShouldBe([ + new MultiDivert(new TunnelsAndDivertsList([], new TunnelListEndingDivert(null))) + ]); + } + [Fact] public void TestReturnFromTunnel() {