aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy/glob2regpat_spec.lua
blob: de304f3e4b999c360fc3fb70bd5d20de2419cb54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
local helpers = require('test.functional.helpers')(after_each)
local clear = helpers.clear
local eq, eval = helpers.eq, helpers.eval

describe('glob2regpat()', function()
  before_each(clear)

  it('returns ^$ for empty input', function()
    eq('^$', eval("glob2regpat('')"))
  end)
  it('handles valid input', function()
    eq('^foo\\.', eval("glob2regpat('foo.*')"))
    eq('\\.vim$', eval("glob2regpat('*.vim')"))
  end)
end)