diff options
author | David Flatz | 2018-10-08 15:34:35 +0200 |
---|---|---|
committer | David Flatz | 2018-10-08 15:34:35 +0200 |
commit | e86a9a9ffc312e1f1b239ea4ec3d2b613a065a10 (patch) | |
tree | c654cb5168a00d80cac06a432cdd8971e623d9c5 /test/it_dbi.t | |
parent | 9e9565b9b29696bae8f74e02b0457208380caaef (diff) | |
download | itools-e86a9a9ffc312e1f1b239ea4ec3d2b613a065a10.tar.gz itools-e86a9a9ffc312e1f1b239ea4ec3d2b613a065a10.tar.bz2 itools-e86a9a9ffc312e1f1b239ea4ec3d2b613a065a10.zip |
improve tests and styling
Diffstat (limited to 'test/it_dbi.t')
-rwxr-xr-x | test/it_dbi.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/it_dbi.t b/test/it_dbi.t index 6b89db2..a257105 100755 --- a/test/it_dbi.t +++ b/test/it_dbi.t @@ -366,7 +366,8 @@ is($r->key3, 'c', 'dynamic column for record with empty dyncols whould be correc $r->clear(false); is($r->select(['-key1 IS NOT' => 'NULL']), 1, 'only one entry has a value for key1'); -is($r->select(['-key2 IS' => 'NULL']), 2, "two entries don't have a value for key1"); +is($r->select(['-key1 IS' => 'NULL']), 2, "two entries don't have a value for key1"); +is($r->select(['key1' => null]), 2, "same behaviour without - syntax"); $r->read(1); $r->update(['key1' => null]); is($r->key1, null, 'setting dyncol to null should make it be null'); |