123456789101112131415161718192021222324252627282930313233343536373839 |
- # ############################################################
- # Importing - Same For All Render Layer Tests
- # ############################################################
- import unittest
- import os
- import sys
- from view_layer_common import *
- # ############################################################
- # Testing
- # ############################################################
- class UnitTesting(ViewLayerTesting):
- def test_scene_collections_link(self):
- """
- See if scene copying 'LINK_OBJECTS' is working for scene collections
- """
- import os
- ROOT = self.get_root()
- # note: nothing should change, so using `layers_simple.json`
- filepath_layers_json_copy = os.path.join(ROOT, 'layers_simple.json')
- self.do_scene_copy(
- filepath_layers_json_copy,
- 'LINK_OBJECTS',
- (get_scene_collections,))
- # ############################################################
- # Main - Same For All Render Layer Tests
- # ############################################################
- if __name__ == '__main__':
- UnitTesting._extra_arguments = setup_extra_arguments(__file__)
- unittest.main()
|