test_group_a.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # ############################################################
  2. # Importing - Same For All Render Layer Tests
  3. # ############################################################
  4. import unittest
  5. import os
  6. import sys
  7. from view_layer_common import *
  8. # ############################################################
  9. # Testing
  10. # ############################################################
  11. class UnitTesting(ViewLayerTesting):
  12. def test_group_create_basic(self):
  13. """
  14. See if the creation of new groups is not crashing anything.
  15. """
  16. import bpy
  17. scene = bpy.context.scene
  18. layer_collection = bpy.context.layer_collection
  19. # Cleanup Viewport view layer
  20. # technically this shouldn't be needed but
  21. # for now we need it because depsgraph build all the view layers
  22. # at once.
  23. while len(scene.view_layers) > 1:
  24. scene.view_layers.remove(scene.view_layers[1])
  25. # create group
  26. group = layer_collection.create_group()
  27. # update depsgraph
  28. bpy.context.view_layer.update()
  29. # ############################################################
  30. # Main - Same For All Render Layer Tests
  31. # ############################################################
  32. if __name__ == '__main__':
  33. UnitTesting._extra_arguments = setup_extra_arguments(__file__)
  34. unittest.main()