Merge branch 'testing'
This commit is contained in:
commit
9ac85f9871
15
.gitignore
vendored
15
.gitignore
vendored
|
@ -1,15 +0,0 @@
|
|||
*
|
||||
|
||||
!.gitignore
|
||||
!.travis.yml
|
||||
!CONTRIBUTING.md
|
||||
!LICENSE
|
||||
!README.md
|
||||
!autoload/startify.vim
|
||||
!doc/startify.txt
|
||||
!plugin/startify.vim
|
||||
!startify.png
|
||||
!syntax/startify.vim
|
||||
!test/run
|
||||
!test/tests.vader
|
||||
!test/vimrc
|
|
@ -4,4 +4,11 @@ before_script: |
|
|||
git clone https://github.com/junegunn/vader.vim.git
|
||||
|
||||
script: |
|
||||
vim -Nu test/vimrc -c 'Vader! test/*' >/dev/null
|
||||
vim -XNu <(cat << EOF
|
||||
filetype off
|
||||
set runtimepath+=vader.vim
|
||||
set runtimepath+=.
|
||||
filetype plugin on
|
||||
syntax enable
|
||||
set hidden
|
||||
EOF) -c 'Vader! test/*' >/dev/null
|
||||
|
|
11
test/run
11
test/run
|
@ -1,3 +1,12 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
vim -XNu vimrc -c 'Vader! *' >/dev/null
|
||||
vader="${HOME}/.vim/*bundle*/vader.vim"
|
||||
|
||||
if [ -d $vader ]; then
|
||||
[[ ! -L vader.vim ]] && ln -s $vader
|
||||
else
|
||||
git clone https://github.com/junegunn/vader.vim.git
|
||||
fi
|
||||
|
||||
echo '(Be patient.. testing can take a while.)'
|
||||
vim -XNu vimrc -i NONE -c 'Vader! *' >/dev/null
|
||||
|
|
|
@ -24,7 +24,7 @@ Expect (only "bar"):
|
|||
|
||||
Given:
|
||||
quux
|
||||
Do (quit Startify buffer via 'q'):
|
||||
Do (quit startify buffer via 'q'):
|
||||
q
|
||||
Expect:
|
||||
quux
|
||||
|
|
Loading…
Reference in a new issue