Minor fix.

This commit is contained in:
Dion Moult
2021-11-10 12:46:07 +11:00
parent d733960068
commit c1c50f8868
10 changed files with 50 additions and 40 deletions
@@ -61,6 +61,14 @@ class TestClearModifiers(NewFile):
assert len(obj.modifiers) == 0
class TestClearScale(NewFile):
def test_run(self):
obj = bpy.data.objects.new("Object", bpy.data.meshes.new("Mesh"))
obj.scale[0] = 2
subject.clear_scale(obj)
assert list(obj.scale) == [1, 1, 1]
class TestCreateDynamicVoids(NewFile):
def test_run(self):
ifc = ifcopenshell.file()