We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cdd9ba commit 2ec0188Copy full SHA for 2ec0188
tests/smoke_test.py
@@ -16,8 +16,12 @@ def test_nested_cubes():
16
# Create the basic assembly
17
assy = generate_nested_boxes()
18
19
- # Create a mesh that has all the faces tagged as physical groups
20
- assy.saveToGmsh(mesh_path="tagged_nested_boxes.msh")
+ # Convert the assembly to a GMSH mesh
+ 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
25
26
27
def test_basic_assembly():
0 commit comments