# -*- coding: utf-8 -*- """Unit tests for data_tools functions (replaces the deleted trading_domain).""" from backend.tools.data_tools import ( get_company_news, get_financial_metrics, get_insider_trades, get_market_cap, get_prices, search_line_items, ) def test_data_tools_functions_exist(): """Verify that all data_tools functions are importable and callable.""" assert callable(get_prices) assert callable(get_financial_metrics) assert callable(get_company_news) assert callable(get_insider_trades) assert callable(get_market_cap) assert callable(search_line_items)