diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-04-11 01:43:15 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-04-11 01:58:41 +0200 |
commit | b11b681289582472340e3af72ea116c4ba354066 (patch) | |
tree | 54ed5431ab98abf242e520bbc74252d4e0251d12 /test/helpers.lua | |
parent | f19db1b9ba864e4e57cc9ee29763ae5f74bcb415 (diff) | |
download | rneovim-b11b681289582472340e3af72ea116c4ba354066.tar.gz rneovim-b11b681289582472340e3af72ea116c4ba354066.tar.bz2 rneovim-b11b681289582472340e3af72ea116c4ba354066.zip |
test/util: matches()
Diffstat (limited to 'test/helpers.lua')
-rw-r--r-- | test/helpers.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/helpers.lua b/test/helpers.lua index 7cce6d8c55..0b6a10a29a 100644 --- a/test/helpers.lua +++ b/test/helpers.lua @@ -16,6 +16,12 @@ end local function ok(res) return assert.is_true(res) end +local function matches(pat, actual) + if nil ~= string.match(actual, pat) then + return true + end + error(string.format('Pattern does not match.\nPattern:\n%s\nActual:\n%s', pat, actual)) +end -- initial_path: directory to recurse into -- re: include pattern (string) @@ -572,6 +578,7 @@ return { hasenv = hasenv, intchar2lua = intchar2lua, map = map, + matches = matches, mergedicts_copy = mergedicts_copy, neq = neq, ok = ok, |