ofp-util: Work on decoding OF1.1 flow_mods.
[openvswitch] / tests / ovsdb-column.at
1 AT_BANNER([OVSDB -- columns])
2
3 OVSDB_CHECK_POSITIVE_CPY([ordinary column],
4   [[parse-column mycol '{"type": "integer"}']],
5   [[{"type":"integer"}]])
6
7 OVSDB_CHECK_POSITIVE_CPY([immutable column],
8   [[parse-column mycol '{"type": "real", "mutable": false}']],
9   [[{"mutable":false,"type":"real"}]])
10
11 OVSDB_CHECK_POSITIVE_CPY([ephemeral column],
12   [[parse-column mycol '{"type": "uuid", "ephemeral": true}']],
13   [[{"ephemeral":true,"type":"uuid"}]])