diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-07-18 11:17:16 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-07-18 11:17:16 -0400 |
commit | 9c3bd3e427686855a8e75403d1715dd4b99ffa8a (patch) | |
tree | 684c90060182f90bd043cfa5bf1146aca6c95c1a | |
parent | 98fb0f12c4c447b70bbef3004bb1657887537d5c (diff) | |
download | rneovim-9c3bd3e427686855a8e75403d1715dd4b99ffa8a.tar.gz rneovim-9c3bd3e427686855a8e75403d1715dd4b99ffa8a.tar.bz2 rneovim-9c3bd3e427686855a8e75403d1715dd4b99ffa8a.zip |
test: Update test_alot.vim
These tests should be here, not in the Makefile.
-rw-r--r-- | src/nvim/testdir/Makefile | 4 | ||||
-rw-r--r-- | src/nvim/testdir/test_alot.vim | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index 30923101bc..30f5170565 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -33,15 +33,11 @@ SCRIPTS := \ # Tests using runtest.vim.vim. # Keep test_alot*.res as the last one, sort the others. NEW_TESTS = \ - test_assign.res \ - test_cursor_func.res \ test_hardcopy.res \ test_help_tagjump.res \ test_langmap.res \ - test_menu.res \ test_syntax.res \ test_timers.res \ - test_unlet.res \ test_viml.res \ test_alot.res diff --git a/src/nvim/testdir/test_alot.vim b/src/nvim/testdir/test_alot.vim index 1d1da94bac..ad9b2cce8b 100644 --- a/src/nvim/testdir/test_alot.vim +++ b/src/nvim/testdir/test_alot.vim @@ -1,3 +1,7 @@ " A series of tests that can run in one Vim invocation. " This makes testing go faster, since Vim doesn't need to restart. +source test_assign.vim +source test_cursor_func.vim +source test_menu.vim +source test_unlet.vim |