test_scene_copy_c.py 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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_layers_copy(self):
  13. """
  14. See if scene copying 'FULL_COPY' is working for scene layers
  15. """
  16. import os
  17. ROOT = self.get_root()
  18. filepath_layers_json_copy = os.path.join(ROOT, 'layers_copy_full.json')
  19. self.do_scene_copy(
  20. filepath_layers_json_copy,
  21. 'FULL_COPY',
  22. (get_scene_collections, get_layers))
  23. # ############################################################
  24. # Main - Same For All Render Layer Tests
  25. # ############################################################
  26. if __name__ == '__main__':
  27. UnitTesting._extra_arguments = setup_extra_arguments(__file__)
  28. unittest.main()