Mixin with the purpose of cover all the related with cache
Source code in breathecode/tests/mixins/breathecode_mixin/cache.py
| class Cache:
"""Mixin with the purpose of cover all the related with cache"""
clear = CacheMixin.clear_cache
_parent: APITestCase
_bc: interfaces.BreathecodeInterface
def __init__(self, parent, bc: interfaces.BreathecodeInterface) -> None:
self._parent = parent
self._bc = bc
|