1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- # ############################################################
- # Importing - Same For All Render Layer Tests
- # ############################################################
- import unittest
- import os
- import sys
- from view_layer_common import *
- # ############################################################
- # Testing
- # ############################################################
- class UnitTesting(MoveSceneCollectionTesting):
- def get_reference_scene_tree_map(self):
- # original tree, no changes
- return self.get_initial_scene_tree_map()
- def test_scene_collection_into(self):
- """
- Test outliner operations
- """
- import bpy
- master_collection = bpy.context.scene.master_collection
- tree = self.setup_tree()
- for collection in tree.values():
- # can't move into master_collection anywhere
- self.assertFalse(master_collection.move_into(collection))
- self.compare_tree_maps()
- # ############################################################
- # Main - Same For All Render Layer Tests
- # ############################################################
- if __name__ == '__main__':
- UnitTesting._extra_arguments = setup_extra_arguments(__file__)
- unittest.main()
|