test_evaluation_render_settings_c.py 1.1 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. @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()
  18. self.assertEqual(clay.get('object', 'matcap_icon'), '01')
  19. clay.set('mom', 'matcap_icon', '02')
  20. self.assertEqual(clay.get('object', 'matcap_icon'), '02')
  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()