1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
######################################################################
#
# File: test/unit/fixtures/cache.py
#
# Copyright 2021 Backblaze Inc. All Rights Reserved.
#
# License https://www.backblaze.com/using_b2_code.html
#
######################################################################
from __future__ import annotations
import pytest
from apiver_deps import InMemoryCache
@pytest.fixture
def fake_cache(mocker):
return mocker.MagicMock(name='FakeCache', spec=InMemoryCache)
|