Skip to content

Commit

Permalink
add test of quoted dumb var
Browse files Browse the repository at this point in the history
  • Loading branch information
drmingdrmer committed Feb 3, 2015
1 parent fb52915 commit 0e40f16
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions autoload/xpt/ut/test_eval.vim
Expand Up @@ -29,6 +29,10 @@ fun! s:TestEval( t ) "{{{
\ [ [ '$abcd', {}, {} ], '' ],
\ [ [ 'xx$abcd', {}, {} ], 'xx' ],
\
\ [ [ '{}', {}, {} ], '{}' ],
\ [ [ '{$}', {}, {} ], '{$}' ],
\ [ [ '{$_}', {}, {} ], '' ],
\
\ [ [ '$a', {"$a" : "var-a"}, {} ], 'var-a' ],
\ [ [ '$ a', {"$a" : "var-a"}, {} ], '$ a' ],
\ [ [ '$\a', {"$a" : "var-a"}, {} ], '$\a' ],
Expand Down

0 comments on commit 0e40f16

Please sign in to comment.