annotate src/testdir/test_glob2regpat.vim @ 7767:c9daa07abf34

commit https://github.com/vim/vim/commit/ac80999985299dae4a9ef56dbf31fbdb35c04c08 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 25 22:44:54 2016 +0100 add missing test file
author Christian Brabandt <cb@256bit.org>
date Mon, 25 Jan 2016 23:00:05 +0100
parents
children 6882920b42da
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7767
c9daa07abf34 commit https://github.com/vim/vim/commit/ac80999985299dae4a9ef56dbf31fbdb35c04c08
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 " Test glob2regpat()
c9daa07abf34 commit https://github.com/vim/vim/commit/ac80999985299dae4a9ef56dbf31fbdb35c04c08
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2
c9daa07abf34 commit https://github.com/vim/vim/commit/ac80999985299dae4a9ef56dbf31fbdb35c04c08
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3 func Test_invalid()
c9daa07abf34 commit https://github.com/vim/vim/commit/ac80999985299dae4a9ef56dbf31fbdb35c04c08
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
4 call assert_fails('call glob2regpat(1.33)', 'E806:')
c9daa07abf34 commit https://github.com/vim/vim/commit/ac80999985299dae4a9ef56dbf31fbdb35c04c08
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
5 endfunc
c9daa07abf34 commit https://github.com/vim/vim/commit/ac80999985299dae4a9ef56dbf31fbdb35c04c08
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
6
c9daa07abf34 commit https://github.com/vim/vim/commit/ac80999985299dae4a9ef56dbf31fbdb35c04c08
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
7 func Test_valid()
c9daa07abf34 commit https://github.com/vim/vim/commit/ac80999985299dae4a9ef56dbf31fbdb35c04c08
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
8 call assert_equal('^foo\.', glob2regpat('foo.*'))
c9daa07abf34 commit https://github.com/vim/vim/commit/ac80999985299dae4a9ef56dbf31fbdb35c04c08
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
9 call assert_equal('\.vim$', glob2regpat('*.vim'))
c9daa07abf34 commit https://github.com/vim/vim/commit/ac80999985299dae4a9ef56dbf31fbdb35c04c08
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
10 endfunc