Test Python Package / unit-tests (pull_request) Successful in 12s
Code Quality Pipeline / code-quality (pull_request) Successful in 19s
PR Title Check / check-title (pull_request) Successful in 31s
Test Python Package / integration-tests (pull_request) Successful in 23s
Test Python Package / coverage-report (pull_request) Successful in 10s
Route Python hooks through uv run with versions pinned in uv.lock, add explicit Ruff settings, and extend the dependency bot to run pre-commit autoupdate. Co-authored-by: Cursor <cursoragent@cursor.com>
36 lines
1.0 KiB
Python
36 lines
1.0 KiB
Python
"""Unit tests for ContextAwareInterface."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
from python_repositories.interfaces.context_aware_interface import ContextAwareInterface
|
|
|
|
|
|
def test_instantiation_fails_when_enter_not_implemented() -> None:
|
|
"""Test that instantiation fails if __enter__ is not implemented."""
|
|
|
|
class Incomplete(ContextAwareInterface):
|
|
"""A class that does not implement __enter__."""
|
|
|
|
def __exit__(
|
|
self, exc_type: type | None, exc_val: object | None, exc_tb: object | None
|
|
) -> None:
|
|
pass
|
|
|
|
with pytest.raises(TypeError):
|
|
_ = Incomplete() # type: ignore
|
|
|
|
|
|
def test_instantiation_fails_when_exit_not_implemented() -> None:
|
|
"""Test that instantiation fails if __exit__ is not implemented."""
|
|
|
|
class Incomplete(ContextAwareInterface):
|
|
"""A class that does not implement __exit__."""
|
|
|
|
def __enter__(self) -> Incomplete:
|
|
return self
|
|
|
|
with pytest.raises(TypeError):
|
|
_ = Incomplete() # type: ignore
|