45 lines
557 B
Text
45 lines
557 B
Text
spawn $env(VIM) -N --noplugin -u ../vimrc
|
|
set timeout 3
|
|
expect {
|
|
timeout {exit 1}
|
|
"VIM - Vi IMproved"
|
|
}
|
|
send ":e foo\r"
|
|
expect {
|
|
timeout {exit 1}
|
|
"foo###" # Success
|
|
}
|
|
|
|
send ":e bar\r"
|
|
expect {
|
|
timeout {exit 1}
|
|
"bar***" # Success
|
|
}
|
|
|
|
send "otypingblah"
|
|
expect {
|
|
timeout {exit 1}
|
|
"typingblah" # Success
|
|
}
|
|
|
|
# ESC
|
|
send \033
|
|
|
|
send ":LustyBufferExplorer\r"
|
|
expect {
|
|
"Press ENTER" {exit 1}
|
|
"Error" {exit 1}
|
|
"Warning" {exit 1}
|
|
timeout {exit 1}
|
|
"\[+]" # Success
|
|
}
|
|
|
|
send \033
|
|
|
|
send ":qa!\r"
|
|
expect {
|
|
timeout {exit 1}
|
|
eof
|
|
}
|
|
exit 0
|
|
|