"""Unit tests for PointsService.""" import pytest from app.modules.loyalty.services.points_service import PointsService @pytest.mark.unit @pytest.mark.loyalty class TestPointsService: """Test suite for PointsService.""" def setup_method(self): self.service = PointsService() def test_service_instantiation(self): """Service can be instantiated.""" assert self.service is not None