2023-08-16 00:20:26 +10:00
|
|
|
# SPDX-FileCopyrightText: 2017-2022 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-02-14 18:15:09 +01:00
|
|
|
# ############################################################
|
|
|
|
|
# Importing - Same For All Render Layer Tests
|
|
|
|
|
# ############################################################
|
|
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
|
|
2024-10-30 13:36:49 +11:00
|
|
|
from view_layer_common import (
|
|
|
|
|
ViewLayerTesting,
|
|
|
|
|
setup_extra_arguments,
|
|
|
|
|
)
|
2017-02-14 18:15:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# ############################################################
|
|
|
|
|
# Testing
|
|
|
|
|
# ############################################################
|
|
|
|
|
|
2017-11-22 10:52:39 -02:00
|
|
|
class UnitTesting(ViewLayerTesting):
|
2017-03-02 09:37:10 +01:00
|
|
|
def test_object_link_scene(self):
|
2017-02-14 18:15:09 +01:00
|
|
|
"""
|
|
|
|
|
See if we can link objects
|
|
|
|
|
"""
|
|
|
|
|
import bpy
|
|
|
|
|
master_collection = bpy.context.scene.master_collection
|
2017-03-02 09:37:10 +01:00
|
|
|
self.do_object_link(master_collection)
|
2017-02-14 18:15:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# ############################################################
|
|
|
|
|
# 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-02-14 18:15:09 +01:00
|
|
|
unittest.main()
|