Added simple PSA import test

Just validates that the actions get imported.
This commit is contained in:
Colin Basnett
2025-04-02 17:34:58 -07:00
parent 6369d4997e
commit 8471cc1996
4 changed files with 46 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ def test_psk_import_all():
armature_object = bpy.data.objects.get('Suzanne', None)
assert armature_object is not None, "Armature object not found in the scene"
assert armature_object.type == 'ARMATURE', "Armature object type should be ARMATURE"
assert armature_object is not None, "Armature object not found in the scene"
assert len(armature_object.children) == 1, "Armature object should have one child"