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