bonsai tool module imports #5178

This commit is contained in:
Andrej730
2024-08-14 13:56:39 +05:00
committed by Andrej
parent be442ff1be
commit c03777cfe6
82 changed files with 532 additions and 550 deletions
+4 -4
View File
@@ -19,14 +19,14 @@
import bpy
import ifcopenshell
import test.bim.bootstrap
import blenderbim.core.tool
import blenderbim.tool as tool
from blenderbim.tool.context import Context as subject
import bonsai.core.tool
import bonsai.tool as tool
from bonsai.tool.context import Context as subject
class TestImplementsTool(test.bim.bootstrap.NewFile):
def test_run(self):
assert isinstance(subject(), blenderbim.core.tool.Context)
assert isinstance(subject(), bonsai.core.tool.Context)
class TestSetContext(test.bim.bootstrap.NewFile):