test_object_link_c.py 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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_object_link_reload(self):
  13. """
  14. See if we can link objects and not crash
  15. """
  16. import bpy
  17. master_collection = bpy.context.scene.master_collection
  18. self.do_object_link(master_collection)
  19. # force depsgraph to update
  20. bpy.ops.wm.read_factory_settings()
  21. # ############################################################
  22. # Main - Same For All Render Layer Tests
  23. # ############################################################
  24. if __name__ == '__main__':
  25. UnitTesting._extra_arguments = setup_extra_arguments(__file__)
  26. unittest.main()