Files
divkit/test_data/parsing_test_data/expressions.json
T
pkurchatov 44ca3f5eb3 Added parsing tests
b4f56f91e6930a8afa5c5c0a9b20727c24a1e85f
2024-02-29 12:27:27 +03:00

50 lines
1.1 KiB
JSON

{
"description": "All properties with expressions are parsed correctly",
"card": {
"log_id": "test",
"states": [
{
"state_id": 0,
"div": {
"type": "text",
"auto_ellipsize": "@{true}",
"font_weight": "@{font_weight}",
"font_size": "@{font_size}",
"text": "@{'Hello!'}",
"text_color": "@{text_color}",
"actions": [
{
"log_id": "test_action",
"params": "@{action_params}"
}
]
}
}
]
},
"expected": {
"card": {
"log_id": "test",
"states": [
{
"state_id": 0,
"div": {
"type": "text",
"auto_ellipsize": "@{true}",
"font_weight": "@{font_weight}",
"font_size": "@{font_size}",
"text": "@{'Hello!'}",
"text_color": "@{text_color}",
"actions": [
{
"log_id": "test_action",
"params": "@{action_params}"
}
]
}
}
]
}
}
}