diff --git a/doc/changelog.d/4776.fixed.md b/doc/changelog.d/4776.fixed.md new file mode 100644 index 000000000000..1e0ca5f7a301 --- /dev/null +++ b/doc/changelog.d/4776.fixed.md @@ -0,0 +1 @@ +'switch_to_meshing_mode' in tui. diff --git a/tests/test_tui_api.py b/tests/test_tui_api.py index a3e19f341868..becc13da872f 100644 --- a/tests/test_tui_api.py +++ b/tests/test_tui_api.py @@ -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)