Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changelog.d/4776.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
'switch_to_meshing_mode' in tui.
8 changes: 8 additions & 0 deletions tests/test_tui_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,11 @@ def test_commands_not_in_solver_tui(new_solver_session):
for command in hidden_commands:
assert command not in dir(solver.tui)
assert getattr(solver.tui, command)

case_path = download_file("mixing_elbow.cas.h5", "pyfluent/mixing_elbow")
download_file("mixing_elbow.dat.h5", "pyfluent/mixing_elbow")
solver.file.read_case_data(file_name=case_path)

for command in hidden_commands:
assert command not in dir(solver.tui)
assert getattr(solver.tui, command)
Loading