Skip to content

Commit 2ec0188

Browse files
committed
Check number of surfaces in nested boxes test
1 parent 8cdd9ba commit 2ec0188

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/smoke_test.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,12 @@ def test_nested_cubes():
1616
# Create the basic assembly
1717
assy = generate_nested_boxes()
1818

19-
# Create a mesh that has all the faces tagged as physical groups
20-
assy.saveToGmsh(mesh_path="tagged_nested_boxes.msh")
19+
# Convert the assembly to a GMSH mesh
20+
gmsh = assy.getTaggedGmsh()
21+
22+
# Make sure we have the correct number of surfaces
23+
surfaces = gmsh.model.getEntities(2)
24+
assert len(surfaces) == 18
2125

2226

2327
def test_basic_assembly():

0 commit comments

Comments
 (0)