test_object_link_b.py 1.0 KB

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