2017-02-14 18:15:09 +01:00
|
|
|
# ############################################################
|
|
|
|
# Importing - Same For All Render Layer Tests
|
|
|
|
# ############################################################
|
|
|
|
|
|
|
|
import unittest
|
2017-03-22 15:22:58 +01:00
|
|
|
import os
|
|
|
|
import sys
|
2017-02-14 18:15:09 +01:00
|
|
|
|
2017-11-22 10:52:39 -02:00
|
|
|
from view_layer_common import *
|
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_reload(self):
|
2017-02-14 18:15:09 +01:00
|
|
|
"""
|
2017-03-02 09:37:10 +01:00
|
|
|
See if we can link objects and not crash
|
2017-02-14 18:15:09 +01:00
|
|
|
"""
|
|
|
|
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
|
|
|
|
2017-03-02 09:37:10 +01:00
|
|
|
# force depsgraph to update
|
|
|
|
bpy.ops.wm.read_factory_settings()
|
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()
|