Mercurial > vim
annotate src/testdir/test_glob2regpat.vim @ 7807:1a5d34492798 v7.4.1200
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jan 29 23:20:40 2016 +0100
patch 7.4.1200
Problem: Still using __ARGS.
Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 29 Jan 2016 23:30:06 +0100 |
parents | c9daa07abf34 |
children | 6882920b42da |
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 |