aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test97.in
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-11-04 12:59:09 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-11-04 12:59:09 -0300
commit04633e3e6bb0da1489050fee2c7514f9a1808327 (patch)
treeddd4aa89a5f579d054c9627bd2d7cd8a19134767 /src/nvim/testdir/test97.in
parent1d250cddb87546c0470462738d546c9d061dff56 (diff)
parenta695c8786377d2399ca2472df183bdc2d32f4048 (diff)
downloadrneovim-04633e3e6bb0da1489050fee2c7514f9a1808327.tar.gz
rneovim-04633e3e6bb0da1489050fee2c7514f9a1808327.tar.bz2
rneovim-04633e3e6bb0da1489050fee2c7514f9a1808327.zip
Merge PR #1328 'Migrate legacy tests'
Diffstat (limited to 'src/nvim/testdir/test97.in')
-rw-r--r--src/nvim/testdir/test97.in23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/nvim/testdir/test97.in b/src/nvim/testdir/test97.in
deleted file mode 100644
index d4ff6d9295..0000000000
--- a/src/nvim/testdir/test97.in
+++ /dev/null
@@ -1,23 +0,0 @@
-Test whether glob()/globpath() return correct results with certain escaped
-characters.
-
-STARTTEST
-:so small.vim
-:" make sure glob() doesn't use the shell
-:set shell=doesnotexist
-:" consistent sorting of file names
-:set nofileignorecase
-:e test.out
-:$put =glob('Xxx\{')
-:$put =glob('Xxx\$')
-:w! Xxx{
-:w! Xxx\$
-:$put =glob('Xxx\{')
-:$put =glob('Xxx\$')
-:"
-:$put =string(globpath('sautest/autoload', '*.vim'))
-:$put =string(globpath('sautest/autoload', '*.vim', 0, 1))
-:w
-:qa!
-ENDTEST
-