test_evaluation_render_settings_h.py 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. @unittest.skip("Uses the clay engine, that is removed T55454")
  13. def test_render_settings(self):
  14. """
  15. See if the depsgraph evaluation is correct
  16. """
  17. clay = Clay(extra_kid_layer=True)
  18. self.assertEqual(clay.get('object', 'matcap_icon'), '01')
  19. clay.set('kid', 'matcap_icon', '02')
  20. clay.set('extra', 'matcap_icon', '04')
  21. self.assertEqual(clay.get('object', 'matcap_icon'), '04')
  22. # ############################################################
  23. # Main - Same For All Render Layer Tests
  24. # ############################################################
  25. if __name__ == '__main__':
  26. UnitTesting._extra_arguments = setup_extra_arguments(__file__)
  27. unittest.main()