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