Files
blender/tests/python/render_layer/test_evaluation_visibility_i.py
2017-06-19 16:12:11 +10:00

31 lines
866 B
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_torus(self):
"""
See if the depsgraph evaluation is correct
"""
self.do_visibility_object_add('TORUS')
# ############################################################
# Main - Same For All Render Layer Tests
# ############################################################
if __name__ == '__main__':
UnitTesting._extra_arguments = setup_extra_arguments(__file__)
unittest.main()