test_move_into_scene_collection_d.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(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. tree = self.setup_tree()
  20. # can't move into a collection if already the last item of the collection
  21. self.assertFalse(tree['cat'].move_into(tree['3']))
  22. self.compare_tree_maps()
  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()