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