Skip to content
Prev Previous commit
Next Next commit
update comments on unit tests
  • Loading branch information
jdw170000 committed May 22, 2024
commit 4c8a6822090096325182e42f5b1423e58791547f
2 changes: 2 additions & 0 deletions tests/test_run_cli_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ def test_run_server_with_default_values(
# Path("."): path to local folder
# show=True: same as passing the --view option (which defaults to True)
# port=8000: that is the default port
# default_file=None: default behavior is to have no default file
start_server_mock.assert_called_once_with(Path("."), True, 8000, default_file=None)


Expand All @@ -78,6 +79,7 @@ def test_run_server_with_no_view_flag(
# Path("."): path to local folder
# show=False: same as passing the --no-view option
# port=8000: that is the default port
# default_file=None: default behavior is to have no default file
start_server_mock.assert_called_once_with(Path("."), False, 8000, default_file=None)


Expand Down