test_move_into_scene_collection_j.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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(MoveSceneCollectionTesting):
  12. def get_reference_scene_tree_map(self):
  13. # original tree, no changes
  14. return self.get_initial_scene_tree_map()
  15. def test_scene_collection_into(self):
  16. """
  17. Test outliner operations
  18. """
  19. import bpy
  20. master_collection = bpy.context.scene.master_collection
  21. tree = self.setup_tree()
  22. for collection in tree.values():
  23. # can't move into master_collection anywhere
  24. self.assertFalse(master_collection.move_into(collection))
  25. self.compare_tree_maps()
  26. # ############################################################
  27. # Main - Same For All Render Layer Tests
  28. # ############################################################
  29. if __name__ == '__main__':
  30. UnitTesting._extra_arguments = setup_extra_arguments(__file__)
  31. unittest.main()