Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2017-04-03 19:42:01 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-04-03 19:47:50 +0300
commita78e97b206b188f3da050888fa8c61b0f237902a (patch)
treed37c9f1adc04ceb8e6a8f665e90d5a4fa720d2c8 /tests/python/render_layer/test_evaluation_visibility_g.py
parentd31c4c56668fe16096637f5f3697f1573096ebeb (diff)
Layer/Depsgraph: Update depsgraph for new objects
Diffstat (limited to 'tests/python/render_layer/test_evaluation_visibility_g.py')
-rw-r--r--tests/python/render_layer/test_evaluation_visibility_g.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/python/render_layer/test_evaluation_visibility_g.py b/tests/python/render_layer/test_evaluation_visibility_g.py
new file mode 100644
index 00000000000..434ec86707e
--- /dev/null
+++ b/tests/python/render_layer/test_evaluation_visibility_g.py
@@ -0,0 +1,36 @@
+# ############################################################
+# Importing - Same For All Render Layer Tests
+# ############################################################
+
+import unittest
+import os
+import sys
+
+sys.path.append(os.path.dirname(__file__))
+from render_layer_common import *
+
+
+# ############################################################
+# Testing
+# ############################################################
+
+class UnitTesting(RenderLayerTesting):
+ def test_visibility_empty(self):
+ """
+ See if the depsgraph evaluation is correct
+ """
+ self.do_visibility_object_add('EMPTY')
+
+
+# ############################################################
+# 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()