Skip to content

Commit

Permalink
Remove unused test
Browse files Browse the repository at this point in the history
  • Loading branch information
JimMadge committed May 15, 2024
1 parent 8037160 commit 0724e38
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions tests/commands/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,6 @@ def test_template_file(self, runner, tmp_path):


class TestUpload:
# def test_upload(self, mocker, context, runner, config_yaml, config_file):
# mock_method = mocker.patch.object(AzureApi, "upload_blob", return_value=None)
# result = runner.invoke(
# config_command_group,
# ["upload", str(config_file)],
# input="yes\n"
# )
# assert result.exit_code == 0

# mock_method.assert_called_once_with(
# config_yaml,
# Config.filename,
# context.resource_group_name,
# context.storage_account_name,
# context.storage_container_name,
# )

def test_upload_new(self, mocker, context, runner, config_yaml, config_file):
mock_exists = mocker.patch.object(Config, "remote_exists", return_value=False)
mock_upload = mocker.patch.object(AzureApi, "upload_blob", return_value=None)
Expand Down

0 comments on commit 0724e38

Please sign in to comment.