edebeac619
Drop stale gemini_cli expectations: PROVIDERS expectations in test_providers_source_of_truth + test_provider_curation, the test_list_models_gemini_cli function (deleted the whole file since it was the only test), the test_discussion_compression_gemini_cli function, the test_gcli_path_updates_adapter function (its setter was removed), the ui_gemini_cli_path references in test_mma_tier_usage_reset_fix and test_rag_integration. These are the t1.9 minor edits.
8 lines
382 B
Python
8 lines
382 B
Python
import src.models as models
|
|
import src.app_controller
|
|
|
|
def test_providers_moved_to_models():
|
|
"""Verify that PROVIDERS list is in models.py and removed from AppController."""
|
|
expected_providers = ['gemini', 'anthropic', 'deepseek', 'minimax', 'qwen', 'grok', 'llama']
|
|
assert models.PROVIDERS == expected_providers
|
|
assert not hasattr(src.app_controller.AppController, 'PROVIDERS') |