mirror of
https://github.com/godotengine/godot-tests.git
synced 2026-01-05 14:09:55 +03:00
Adds a GDScript test that requires a very specific order of loading as well as the usage of global class names in order to require other files to be loaded. This cannot be achieved with the current unit testing framework.
7 lines
95 B
GDScript
7 lines
95 B
GDScript
class_name GrandMother extends Node
|
|
|
|
var _member:bool = false
|
|
|
|
func test() -> void :
|
|
Daughter
|