]> git.proxmox.com Git - ovs.git/blob - tests/ovsdb-column.at
Fix ovs-dpctl-top by removing 3 wrong hunks in py3-compat.patch.
[ovs.git] / 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"}]])