blob: 9ea7e722011da60888d396fca2039a7a628d5773 [file] [log] [blame]
Wenchao Xiabceae762014-03-06 17:08:56 -08001{ 'union': 'TestUnion',
2 'base': 'TestBase',
3 'discriminator': 'enum1',
4 'data': { 'value1': 'TestTypeA',
5 'value2': 'TestTypeB' } }
6
7{ 'type': 'TestBase',
8 'data': { 'enum1': 'TestEnum' } }
9
10{ 'enum': 'TestEnum',
11 'data': [ 'value1', 'value2' ] }
12
13{ 'type': 'TestTypeA',
14 'data': { 'string': 'str' } }
15
16{ 'type': 'TestTypeB',
17 'data': { 'integer': 'int' } }