From a15ba262e4592cdfb270afad4471b023284cb215 Mon Sep 17 00:00:00 2001 From: Lucas Hoffmann Date: Thu, 11 Jun 2015 01:01:22 +0200 Subject: tests: Migrate legacy test argument_0count. --- src/nvim/testdir/Makefile | 1 - src/nvim/testdir/test_argument_0count.in | 28 ---------------------------- src/nvim/testdir/test_argument_0count.ok | 5 ----- 3 files changed, 34 deletions(-) delete mode 100644 src/nvim/testdir/test_argument_0count.in delete mode 100644 src/nvim/testdir/test_argument_0count.ok (limited to 'src') diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index 0359e15488..023a8bf234 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -30,7 +30,6 @@ SCRIPTS := test_eval.out \ test_argument_count.out \ test_close_count.out \ test_command_count.out \ - test_argument_0count.out SCRIPTS_GUI := test16.out diff --git a/src/nvim/testdir/test_argument_0count.in b/src/nvim/testdir/test_argument_0count.in deleted file mode 100644 index 88317fa1fc..0000000000 --- a/src/nvim/testdir/test_argument_0count.in +++ /dev/null @@ -1,28 +0,0 @@ -Tests for :0argadd and :0argedit vim: set ft=vim : - -STARTTEST -:so small.vim -:let arglists = [] -:%argd -:arga a b c d -:2argu -:0arga added -:call add(arglists, argv()) -:2argu -:arga third -:call add(arglists, argv()) -:%argd -:arga a b c d -:2argu -:0arge edited -:call add(arglists, argv()) -:2argu -:arga third -:call add(arglists, argv()) -:e! test.out -:call append(0, map(copy(arglists), 'join(v:val, " ")')) -:w -:qa! -ENDTEST - - diff --git a/src/nvim/testdir/test_argument_0count.ok b/src/nvim/testdir/test_argument_0count.ok deleted file mode 100644 index ee5daea812..0000000000 --- a/src/nvim/testdir/test_argument_0count.ok +++ /dev/null @@ -1,5 +0,0 @@ -added a b c d -added a third b c d -edited a b c d -edited a third b c d - -- cgit