diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-09-15 19:09:34 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-09-15 19:57:39 +0200 |
commit | c6ca09dc6f0fdf693c2a4445e556861691a81152 (patch) | |
tree | 486146583022e3bf72af033e21f13d6311856fd9 /modules/gdscript/tests/scripts/analyzer/features | |
parent | 520462e98c15ef583f24ea39fb874a388d377b1c (diff) |
Add more integration tests to the GDScript test suite
This also fixes a typo in the `bitwise_float_right_operand.gd` test.
Diffstat (limited to 'modules/gdscript/tests/scripts/analyzer/features')
-rw-r--r-- | modules/gdscript/tests/scripts/analyzer/features/static_method_builtin_type.gd | 2 | ||||
-rw-r--r-- | modules/gdscript/tests/scripts/analyzer/features/static_method_builtin_type.out | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/analyzer/features/static_method_builtin_type.gd b/modules/gdscript/tests/scripts/analyzer/features/static_method_builtin_type.gd new file mode 100644 index 0000000000..569f95850f --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/features/static_method_builtin_type.gd @@ -0,0 +1,2 @@ +func test(): + print(Color.html_is_valid("00ffff")) diff --git a/modules/gdscript/tests/scripts/analyzer/features/static_method_builtin_type.out b/modules/gdscript/tests/scripts/analyzer/features/static_method_builtin_type.out new file mode 100644 index 0000000000..55482c2b52 --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/features/static_method_builtin_type.out @@ -0,0 +1,2 @@ +GDTEST_OK +true |