Files
divkit/test_data/parsing_test_data/templates/with_nested_object.json
T
feldspar 4c0d54dc6d Added tests for template resolution
commit_hash:0ebef77f36d2dcec0a2f8aa5d7605c2422a1197b
2026-02-09 18:55:49 +03:00

43 lines
690 B
JSON

{
"description": "Template with nested object",
"templates": {
"card_text": {
"type": "text",
"paddings": {
"left": 16,
"right": 16
}
}
},
"card": {
"log_id": "test",
"states": [
{
"state_id": 0,
"div": {
"type": "card_text",
"text": "Padded"
}
}
]
},
"expected": {
"card": {
"log_id": "test",
"states": [
{
"state_id": 0,
"div": {
"type": "text",
"text": "Padded",
"paddings": {
"left": 16,
"right": 16
}
}
}
]
}
}
}