test_object_add_empty.py 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  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_syncing_object_add_empty(self):
  13. """
  14. See if new objects are added to the correct collection
  15. bpy.ops.object.add()
  16. """
  17. import os
  18. ROOT = self.get_root()
  19. filepath_json = os.path.join(ROOT, 'layers_object_add_empty.json')
  20. self.do_object_add(filepath_json, 'EMPTY')
  21. # ############################################################
  22. # Main - Same For All Render Layer Tests
  23. # ############################################################
  24. if __name__ == '__main__':
  25. UnitTesting._extra_arguments = setup_extra_arguments(__file__)
  26. unittest.main()