X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=tests%2Fovsdb-column.at;h=b8d0939916f90baf406aaa7454c39c09c561346f;hb=HEAD;hp=03cd8dc694100bf4688e92398970d9dfd62e97df;hpb=c69ee87c10818267f991236201150b1fa51ae519;p=cascardo%2Fovs.git diff --git a/tests/ovsdb-column.at b/tests/ovsdb-column.at index 03cd8dc69..b8d093991 100644 --- a/tests/ovsdb-column.at +++ b/tests/ovsdb-column.at @@ -1,18 +1,13 @@ AT_BANNER([OVSDB -- columns]) -OVSDB_CHECK_POSITIVE([ordinary column], +OVSDB_CHECK_POSITIVE_CPY([ordinary column], [[parse-column mycol '{"type": "integer"}']], [[{"type":"integer"}]]) -OVSDB_CHECK_POSITIVE([immutable column], +OVSDB_CHECK_POSITIVE_CPY([immutable column], [[parse-column mycol '{"type": "real", "mutable": false}']], [[{"mutable":false,"type":"real"}]]) -OVSDB_CHECK_POSITIVE([ephemeral column], +OVSDB_CHECK_POSITIVE_CPY([ephemeral column], [[parse-column mycol '{"type": "uuid", "ephemeral": true}']], [[{"ephemeral":true,"type":"uuid"}]]) - -OVSDB_CHECK_POSITIVE([column with comment], - [[parse-column mycol '{"type": "boolean", - "comment": "extra information about this column"}']], - [[{"comment":"extra information about this column","type":"boolean"}]])