diff src/testdir/test_terminal.vim @ 11912:22658e33203f v8.0.0836

patch 8.0.0836: can abandon a terminal buffer after making a change commit https://github.com/vim/vim/commit/20e6cd07baed8992e7a509ccef7f111ffcded44d Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 1 20:25:22 2017 +0200 patch 8.0.0836: can abandon a terminal buffer after making a change Problem: When a terminal buffer is changed it can still be accidentally abandoned. Solution: When making a change reset the 'buftype' option.
author Christian Brabandt <cb@256bit.org>
date Tue, 01 Aug 2017 20:30:04 +0200
parents 7df4afab67c7
children 00836eb177cb
line wrap: on
line diff
--- a/src/testdir/test_terminal.vim
+++ b/src/testdir/test_terminal.vim
@@ -6,7 +6,7 @@ endif
 
 source shared.vim
 
-func Test_terminal_basic()
+func Run_shell_in_terminal()
   let buf = term_start(&shell)
 
   let termlist = term_list()
@@ -20,6 +20,25 @@ func Test_terminal_basic()
   call WaitFor('job_status(g:job) == "dead"')
   call assert_equal('dead', job_status(g:job))
 
+  return buf
+endfunc
+
+func Test_terminal_basic()
+  let buf = Run_shell_in_terminal()
+
+  exe buf . 'bwipe'
+  unlet g:job
+endfunc
+
+func Test_terminal_make_change()
+  let buf = Run_shell_in_terminal()
+  call term_wait(buf)
+
+  setlocal modifiable
+  exe "normal Axxx\<Esc>"
+  call assert_fails(buf . 'bwipe', 'E517')
+  undo
+
   exe buf . 'bwipe'
   unlet g:job
 endfunc