dotfiles/.vim/bundle/lusty/tests/juggler-no-other-buffers/expect
michener c47f86d55b Add a bunch of stuff, change leader key
git-svn-id: http://photonzero.com/dotfiles/trunk@70 23f722f6-122a-0410-8cef-c75bd312dd78
2010-10-09 02:28:34 +00:00

23 lines
384 B
Text

spawn $env(VIM) -N --noplugin -u ../vimrc
set timeout 3
expect {
timeout {exit 1}
"VIM - Vi IMproved"
}
send ":LustyJuggler\r"
# Launching should not have caused a backtrace and "Press ENTER ..." message
expect {
"Press ENTER" {exit 1}
"Error" {exit 1}
"Warning" {exit 1}
timeout {exit 1}
"No other buffers"
}
send ":q\r"
expect {
timeout {exit 1}
eof
}
exit 0