Files
orion/app/modules/billing/tests/unit/test_feature_service.py
Samir Boulahtit 481deaa67d refactor: fix all 177 architecture validator warnings
- Replace 153 broad `except Exception` with specific types (SQLAlchemyError,
  TemplateError, OSError, SMTPException, ClientError, etc.) across 37 services
- Break catalog↔inventory circular dependency (IMPORT-004)
- Create 19 skeleton test files for MOD-024 coverage
- Exclude aggregator services from MOD-024 (false positives)
- Update test mocks to match narrowed exception types

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-14 11:59:44 +01:00

19 lines
428 B
Python

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