X-Git-Url: https://git.tokkee.org/?p=sysdb.git;a=blobdiff_plain;f=t%2Funit%2Fcore%2Fstore_lookup_test.c;fp=t%2Funit%2Fcore%2Fstore_lookup_test.c;h=33c9268cb01d29fc561987b9838eb86f12b213f6;hp=14d2209a933e0e398a620532a419fae0c27e0e19;hb=518059384a38dbf5b4384c77dc859689ce80cc9d;hpb=1426e3fcf927d6321fd2cf8595394f817bb1a0e2 diff --git a/t/unit/core/store_lookup_test.c b/t/unit/core/store_lookup_test.c index 14d2209..33c9268 100644 --- a/t/unit/core/store_lookup_test.c +++ b/t/unit/core/store_lookup_test.c @@ -592,8 +592,13 @@ struct { { "attribute['x1'] !~ 'v'", NULL, 0 }, { "attribute['k1'] IS NULL", NULL, 1 }, { "attribute['x1'] IS NULL", NULL, 3 }, + { "attribute['k1'] IS TRUE", NULL, 0 }, + { "attribute['x1'] IS TRUE", NULL, 0 }, + { "attribute['k1'] IS FALSE", NULL, 0 }, + { "attribute['x1'] IS FALSE", NULL, 0 }, { "attribute['k1'] IS NOT NULL", NULL, 2 }, { "attribute['x1'] IS NOT NULL", NULL, 0 }, + { "attribute['x1'] IS NOT TRUE", NULL, 3 }, { "attribute['k2'] < 123", NULL, 0 }, { "attribute['k2'] <= 123", NULL, 1 }, { "attribute['k2'] >= 123", NULL, 1 },