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