canaille-globuzma/tests/backends/test_backends.py
2024-05-03 22:25:20 +02:00

16 lines
397 B
Python

import pytest
from canaille.backends import Backend
def test_required_methods(testclient):
with pytest.raises(NotImplementedError):
Backend.install(config=None)
with pytest.raises(NotImplementedError):
Backend.validate({})
backend = Backend(testclient.app.config["CANAILLE"])
with pytest.raises(NotImplementedError):
backend.has_account_lockability()