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-23 12:26:48 +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-23 12:26:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# ############################################################
|
|
|
|
|
# Testing
|
|
|
|
|
# ############################################################
|
|
|
|
|
|
2017-11-22 10:52:39 -02:00
|
|
|
class UnitTesting(ViewLayerTesting):
|
2017-02-23 12:26:48 +01:00
|
|
|
def test_syncing_object_add_cylinder(self):
|
|
|
|
|
"""
|
|
|
|
|
See if new objects are added to the correct collection
|
|
|
|
|
bpy.ops.mesh.primitive_cylinder_add()
|
|
|
|
|
"""
|
|
|
|
|
import os
|
|
|
|
|
ROOT = self.get_root()
|
|
|
|
|
filepath_json = os.path.join(ROOT, 'layers_object_add_cylinder.json')
|
|
|
|
|
self.do_object_add(filepath_json, 'CYLINDER')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ############################################################
|
|
|
|
|
# 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-23 12:26:48 +01:00
|
|
|
unittest.main()
|