2023-08-16 00:20:26 +10:00
|
|
|
# SPDX-FileCopyrightText: 2017-2023 Blender Authors
|
2023-06-15 13:09:04 +10:00
|
|
|
#
|
2022-02-11 14:30:11 +11:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
2017-04-13 16:28:47 +02:00
|
|
|
# ############################################################
|
|
|
|
|
# Importing - Same For All Render Layer Tests
|
|
|
|
|
# ############################################################
|
|
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
|
|
2024-10-30 13:36:49 +11:00
|
|
|
from view_layer_common import (
|
|
|
|
|
Clay,
|
|
|
|
|
ViewLayerTesting,
|
|
|
|
|
setup_extra_arguments,
|
|
|
|
|
)
|
2017-04-13 16:28:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# ############################################################
|
|
|
|
|
# Testing
|
|
|
|
|
# ############################################################
|
|
|
|
|
|
2017-11-22 10:52:39 -02:00
|
|
|
class UnitTesting(ViewLayerTesting):
|
2023-02-12 14:37:16 +11:00
|
|
|
@unittest.skip("Uses the clay engine, that is removed #55454")
|
2017-04-13 16:28:47 +02:00
|
|
|
def test_render_settings(self):
|
|
|
|
|
"""
|
|
|
|
|
See if the depsgraph evaluation is correct
|
|
|
|
|
"""
|
|
|
|
|
clay = Clay()
|
|
|
|
|
self.assertEqual(clay.get('object', 'matcap_icon'), '01')
|
|
|
|
|
clay.set('mom', 'matcap_icon', '02')
|
|
|
|
|
self.assertEqual(clay.get('object', 'matcap_icon'), '02')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ############################################################
|
|
|
|
|
# Main - Same For All Render Layer Tests
|
|
|
|
|
# ############################################################
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2017-06-19 16:12:11 +10:00
|
|
|
UnitTesting._extra_arguments = setup_extra_arguments(__file__)
|
2017-04-13 16:28:47 +02:00
|
|
|
unittest.main()
|