test_evaluation_visibility_h.py 868 B

12345678910111213141516171819202122232425262728293031
  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_visibility_cylinder(self):
  13. """
  14. See if the depsgraph evaluation is correct
  15. """
  16. self.do_visibility_object_add('CYLINDER')
  17. # ############################################################
  18. # Main - Same For All Render Layer Tests
  19. # ############################################################
  20. if __name__ == '__main__':
  21. UnitTesting._extra_arguments = setup_extra_arguments(__file__)
  22. unittest.main()