Merge pull request #52718 from Calinou/gdscript-add-integration-tests-2

This commit is contained in:
Rémi Verschelde
2021-09-21 14:13:24 +02:00
committed by GitHub
30 changed files with 245 additions and 2 deletions
@@ -1,3 +1,3 @@
func test():
# Error here.
print(2 << 4.4)
print(2 >> 4.4)
@@ -1,2 +1,2 @@
GDTEST_ANALYZER_ERROR
Invalid operands to operator <<, int and float.
Invalid operands to operator >>, int and float.
@@ -0,0 +1,2 @@
func test():
print(Color.html_is_valid("00ffff"))
@@ -0,0 +1,2 @@
GDTEST_OK
true