-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfixtures.py
More file actions
38 lines (32 loc) · 1.05 KB
/
fixtures.py
File metadata and controls
38 lines (32 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"""
Fixtures for example product data.
Separates example data from core models for cleaner code organization.
"""
EXAMPLE_PRODUCT_DATA = {
"name": "GlowBoost Vitamin C Serum",
"product_type": "10% Vitamin C Serum",
"target_users": ["Oily skin", "Combination skin", "Anti-aging enthusiasts"],
"key_features": [
"10% Vitamin C (L-Ascorbic Acid)",
"Hyaluronic Acid",
"Niacinamide",
"Plant extracts"
],
"benefits": [
"Brightening",
"Dark spot fading",
"Antioxidant protection",
"Hydration"
],
"how_to_use": "Apply 2-3 drops to face and neck each morning after cleansing and toning. Follow with moisturizer and sunscreen.",
"considerations": "May cause mild tingling for sensitive skin. Always patch test before first use.",
"price": "₹699"
}
# Minimal example for testing
MINIMAL_PRODUCT_DATA = {
"name": "Test Product",
"price": "$99"
}
def get_example_product() -> dict:
"""Get example product data for UI defaults."""
return EXAMPLE_PRODUCT_DATA.copy()