36 lines
1.0 KiB
Python
36 lines
1.0 KiB
Python
![]() |
# ############################################################
|
||
|
# Importing - Same For All Render Layer Tests
|
||
|
# ############################################################
|
||
|
|
||
|
import unittest
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
from render_layer_common import *
|
||
|
|
||
|
|
||
|
# ############################################################
|
||
|
# Testing
|
||
|
# ############################################################
|
||
|
|
||
|
class UnitTesting(RenderLayerTesting):
|
||
|
def test_visibility_cylinder(self):
|
||
|
"""
|
||
|
See if the depsgraph evaluation is correct
|
||
|
"""
|
||
|
self.do_visibility_object_add('CYLINDER')
|
||
|
|
||
|
|
||
|
# ############################################################
|
||
|
# Main - Same For All Render Layer Tests
|
||
|
# ############################################################
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
import sys
|
||
|
|
||
|
extra_arguments = sys.argv[sys.argv.index("--") + 1:] if "--" in sys.argv else []
|
||
|
sys.argv = [__file__] + (sys.argv[sys.argv.index("--") + 2:] if "--" in sys.argv else [])
|
||
|
|
||
|
UnitTesting._extra_arguments = extra_arguments
|
||
|
unittest.main()
|