canaille-globuzma/tests/backends/test_backends.py
2025-01-10 12:32:18 +01:00

16 lines
394 B
Python

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