# -*- coding: utf-8 -*- """ Тесты для модуля customers. Все тесты организованы по функциональным областям в отдельных модулях. """ from .test_search_strategies import DetermineSearchStrategyTestCase, IsQueryPhoneOnlyTestCase from .test_wallet_balance import WalletBalanceCalculationTestCase from .test_wallet_model import WalletTransactionModelTestCase from .test_wallet_service import WalletServiceTestCase from .test_system_customer import SystemCustomerProtectionTestCase __all__ = [ # Тесты стратегий поиска клиентов 'DetermineSearchStrategyTestCase', 'IsQueryPhoneOnlyTestCase', # Тесты баланса кошелька 'WalletBalanceCalculationTestCase', # Тесты модели транзакций 'WalletTransactionModelTestCase', # Тесты сервиса кошелька 'WalletServiceTestCase', # Тесты защиты системного клиента 'SystemCustomerProtectionTestCase', ]