test_object_link_a.py 930 B

123456789101112131415161718192021222324252627282930313233
  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_scene(self):
  13. """
  14. See if we can link objects
  15. """
  16. import bpy
  17. master_collection = bpy.context.scene.master_collection
  18. self.do_object_link(master_collection)
  19. # ############################################################
  20. # Main - Same For All Render Layer Tests
  21. # ############################################################
  22. if __name__ == '__main__':
  23. UnitTesting._extra_arguments = setup_extra_arguments(__file__)
  24. unittest.main()