diff options
Diffstat (limited to 'Tests/Game/test_CommandParser.gd')
| -rw-r--r-- | Tests/Game/test_CommandParser.gd | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/Game/test_CommandParser.gd b/Tests/Game/test_CommandParser.gd new file mode 100644 index 0000000..659916e --- /dev/null +++ b/Tests/Game/test_CommandParser.gd @@ -0,0 +1,12 @@ +extends CommandParserTestBase + +const Command = preload("res://Scripts/Game/Command.cs") + +func parse(input: String) -> Command: + return autofree(_instance.TryParse(input)) + +func after_all(): + assert_no_new_orphans() + +func test_parsing_the_empty_string_returns_null(): + assert_null(parse('')) |
