(user_command_data_no_subcommand)
| 101 | |
| 102 | |
| 103 | def test_to_cli_string_no_subcommand(user_command_data_no_subcommand): |
| 104 | cli_string = user_command_data_no_subcommand.to_cli_string(True) |
| 105 | |
| 106 | assert cli_string.plain == "test --option1 value1 --option2 42 123" |
| 107 | |
| 108 | |
| 109 | def test_to_cli_string_with_subcommand(user_command_data_with_subcommand): |
nothing calls this directly
no test coverage detected