aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/vim-gitgutter/test/testFileAddedToGit.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/bundle/vim-gitgutter/test/testFileAddedToGit.vim')
-rw-r--r--vim/bundle/vim-gitgutter/test/testFileAddedToGit.vim12
1 files changed, 0 insertions, 12 deletions
diff --git a/vim/bundle/vim-gitgutter/test/testFileAddedToGit.vim b/vim/bundle/vim-gitgutter/test/testFileAddedToGit.vim
deleted file mode 100644
index 91a2c14..0000000
--- a/vim/bundle/vim-gitgutter/test/testFileAddedToGit.vim
+++ /dev/null
@@ -1,12 +0,0 @@
-source helper.vim
-
-let tmpfile = 'fileAddedToGit.tmp'
-call system('touch '.tmpfile)
-call system('git add '.tmpfile)
-execute 'edit '.tmpfile
-normal ihello
-write
-call DumpSigns('fileAddedToGit')
-
-call system('git reset HEAD '.tmpfile)
-call system('rm '.tmpfile)