chore: add GUT test framework
This commit is contained in:
10
addons/gut/scratch/make_doubled_thing.gd
Normal file
10
addons/gut/scratch/make_doubled_thing.gd
Normal file
@@ -0,0 +1,10 @@
|
||||
# Used with doubled_thing.gd. This will create an instance of that to try and
|
||||
# find issues. doubled_thing.gd has source from a doubled object.
|
||||
extends SceneTree
|
||||
|
||||
func _init():
|
||||
var DoubledThing = load('res://scratch/doubled_thing.gd')
|
||||
print(DoubledThing)
|
||||
var inst = DoubledThing.new()
|
||||
print(inst)
|
||||
quit()
|
||||
Reference in New Issue
Block a user