11 lines
240 B
Python
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
|