Differences From Artifact [68603bcdd2]:
- File tests/unittests/misc.scm — part of check-in [7bebfb6ba6] at 2013-11-10 17:40:21 on branch trunk — Divided unit tests into sections (user: matt, size: 2255) [annotate] [blame] [check-ins using] [more...]
To Artifact [f0ad22a5f3]:
- File tests/unittests/misc.scm — part of check-in [e99fe77794] at 2015-06-14 16:14:46 on branch v1.60 — Removed all usage of testdat.db (user: matt, size: 2264) [annotate] [blame] [check-ins using] [more...]
︙ | |||
39 40 41 42 43 44 45 | 39 40 41 42 43 44 45 46 47 48 | + + + | ;; test:match->sqlqry (test #f "(testname GLOB 'a' AND item_path GLOB 'b') OR (testname LIKE 'a%' AND item_path LIKE '%') OR (testname GLOB '' AND item_path LIKE 'b%')" (tests:match->sqlqry "a/b,a%,/b%")) (test #f "(testname GLOB 'a' AND item_path GLOB 'b') OR (testname LIKE 'a%' AND item_path LIKE '%') OR (testname LIKE '%' AND item_path LIKE 'b%')" (tests:match->sqlqry "a/b,a%,%/b%")) (exit) |