Integrate .pre-commit-config.yaml

(cherry picked from commit e0d363aad8)
This commit is contained in:
Thaddeus Crews
2024-06-24 12:20:55 -05:00
committed by David Snopek
parent 1a22e43075
commit c35e7545b7
45 changed files with 423 additions and 1012 deletions

View File

@@ -93,8 +93,8 @@ func _ready():
assert_equal(example.test_str_utility(), "Hello, World! The answer is 42")
# Test converting string to char* and doing comparison.
assert_equal(example.test_string_is_fourty_two("blah"), false)
assert_equal(example.test_string_is_fourty_two("fourty two"), true)
assert_equal(example.test_string_is_forty_two("blah"), false)
assert_equal(example.test_string_is_forty_two("forty two"), true)
# String::resize().
assert_equal(example.test_string_resize("What"), "What!?")