Spaces:
Running on Zero
Running on Zero
File size: 625 Bytes
b48686d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | import os
from runtime_config import get_analytics_product
def test_get_analytics_product_defaults_to_ai_qr_generator(monkeypatch):
monkeypatch.delenv("ANALYTICS_PRODUCT", raising=False)
assert get_analytics_product() == "ai_qr_generator"
def test_get_analytics_product_uses_env_override(monkeypatch):
monkeypatch.setenv("ANALYTICS_PRODUCT", "arti_qrcode_app")
assert get_analytics_product() == "arti_qrcode_app"
def test_get_analytics_product_strips_whitespace(monkeypatch):
monkeypatch.setenv("ANALYTICS_PRODUCT", " arti_qrcode_app ")
assert get_analytics_product() == "arti_qrcode_app"
|