From 114779700ef288f529122bfdc3ac54538122f6c0 Mon Sep 17 00:00:00 2001 From: gmarik Date: Wed, 4 May 2011 20:20:16 -0500 Subject: [PATCH] tests --- test/vimrc | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/test/vimrc b/test/vimrc index eca460a..130eaf6 100644 --- a/test/vimrc +++ b/test/vimrc @@ -30,15 +30,19 @@ Bundle 'github:mattn/gist-vim.git' Bundle '~/Dropbox/.gitrepos/utilz.vim.git' " Bundle 'file://Dropbox/.gitrepos/utilz.vim.git' -" nosync -Bundle! '~/.vim/vundle.git/test/' - " with options Bundle 'rstacruz/sparkup.git', {'rtp': 'vim/'} " Camel case Bundle 'vim-scripts/RubySinatra' +" NOSYNC +" existing directory +Bundle! '~/.vim/vundle.git/test/' + +" just create one +Bundle! 'a_plugin' + filetype plugin indent on " Automatically detect file types. set wildignore+=doc " should not break helptags @@ -53,4 +57,6 @@ func! s:assert_bundles() abort endfor endf +if 'ok' != g:vundle_test_plugin() | throw 'ooops' | endif + call s:assert_bundles()