(disable_commands_app)
| 3954 | |
| 3955 | |
| 3956 | def test_enable_enabled_command(disable_commands_app) -> None: |
| 3957 | # Test enabling a command that is not disabled |
| 3958 | saved_len = len(disable_commands_app.disabled_commands) |
| 3959 | disable_commands_app.enable_command("has_helper_func") |
| 3960 | |
| 3961 | # The number of disabled commands should not have changed |
| 3962 | assert saved_len == len(disable_commands_app.disabled_commands) |
| 3963 | |
| 3964 | |
| 3965 | def test_disable_fake_command(disable_commands_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…