pyinfra/test/unit_tests/azure_adapter_test.py
2022-04-26 12:45:12 +02:00

11 lines
240 B
Python

import pytest
from pyinfra.storage.adapters.azure import AzureStorageAdapter
from test.storage.client_mock import StorageClientMock
@pytest.fixture
def adapter():
adapter = AzureStorageAdapter(StorageClientMock())
return adapter