test_scene_copy_b.py 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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_scene_collections_link(self):
  13. """
  14. See if scene copying 'LINK_OBJECTS' is working for scene collections
  15. """
  16. import os
  17. ROOT = self.get_root()
  18. # note: nothing should change, so using `layers_simple.json`
  19. filepath_layers_json_copy = os.path.join(ROOT, 'layers_simple.json')
  20. self.do_scene_copy(
  21. filepath_layers_json_copy,
  22. 'LINK_OBJECTS',
  23. (get_scene_collections,))
  24. # ############################################################
  25. # Main - Same For All Render Layer Tests
  26. # ############################################################
  27. if __name__ == '__main__':
  28. UnitTesting._extra_arguments = setup_extra_arguments(__file__)
  29. unittest.main()