summaryrefslogtreecommitdiff
path: root/Tests/ComponentTests/ParserTests/test_CommandParser.gd
diff options
context:
space:
mode:
authorSophia Pearson <codergal89@gmail.com>2022-09-04 21:52:27 +0200
committerSophia Pearson <codergal89@gmail.com>2022-09-04 21:52:27 +0200
commitf711d55d465bd8838dc55bde1f4a25d582a6bb6b (patch)
treee2b5b2ac79adf23e5f2c475ce11ee1c3c6561f0b /Tests/ComponentTests/ParserTests/test_CommandParser.gd
parent2f3abbb6f1141f15ef77ac27e431bc66bb0c7899 (diff)
downloadtexty-f711d55d465bd8838dc55bde1f4a25d582a6bb6b.tar.xz
texty-f711d55d465bd8838dc55bde1f4a25d582a6bb6b.zip
tests: adjust tests to new design
Diffstat (limited to 'Tests/ComponentTests/ParserTests/test_CommandParser.gd')
-rw-r--r--Tests/ComponentTests/ParserTests/test_CommandParser.gd9
1 files changed, 0 insertions, 9 deletions
diff --git a/Tests/ComponentTests/ParserTests/test_CommandParser.gd b/Tests/ComponentTests/ParserTests/test_CommandParser.gd
deleted file mode 100644
index bdb14a6..0000000
--- a/Tests/ComponentTests/ParserTests/test_CommandParser.gd
+++ /dev/null
@@ -1,9 +0,0 @@
-extends CommandParserTestBase
-
-const Command = preload("res://Scripts/Command.cs")
-
-func parse(input: String) -> Command:
- return autofree(_instance.TryParse(input))
-
-func test_parsing_the_empty_string_returns_null():
- assert_null(parse(''))