File: test_exceptions.py

package info (click to toggle)
aiocache 0.12.3-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 692 kB
  • sloc: python: 5,044; makefile: 221; sh: 7
file content (5 lines) | stat: -rw-r--r-- 139 bytes parent folder | download
1
2
3
4
5
from aiocache.exceptions import InvalidCacheType


def test_inherit_from_exception():
    assert isinstance(InvalidCacheType(), Exception)