diff src/testdir/test_source.vim @ 24287:c2a234e8c896 v8.2.2684

patch 8.2.2684: not enough folding code is tested Commit: https://github.com/vim/vim/commit/5c504f680e63120fea36becfabb8d939d4449e34 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 1 13:39:51 2021 +0200 patch 8.2.2684: not enough folding code is tested Problem: Not enough folding code is tested. Solution: Add more test cases. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/8046)
author Bram Moolenaar <Bram@vim.org>
date Thu, 01 Apr 2021 13:45:02 +0200
parents 9cbe3a4f1492
children fc859aea8cec
line wrap: on
line diff
--- a/src/testdir/test_source.vim
+++ b/src/testdir/test_source.vim
@@ -1,5 +1,8 @@
 " Tests for the :source command.
 
+source check.vim
+source view_util.vim
+
 func Test_source_autocmd()
   call writefile([
 	\ 'let did_source = 1',
@@ -93,4 +96,18 @@ func Test_source_error()
   call assert_fails('scriptversion 2', 'E984:')
 endfunc
 
+" Test for sourcing a script recursively
+func Test_nested_script()
+  CheckRunVimInTerminal
+  call writefile([':source! Xscript.vim', ''], 'Xscript.vim')
+  let buf = RunVimInTerminal('', {'rows': 6})
+  call term_wait(buf)
+  call term_sendkeys(buf, ":set noruler\n")
+  call term_sendkeys(buf, ":source! Xscript.vim\n")
+  call term_wait(buf)
+  call WaitForAssert({-> assert_match('E22: Scripts nested too deep\s*', term_getline(buf, 6))})
+  call delete('Xscript.vim')
+  call StopVimInTerminal(buf)
+endfunc
+
 " vim: shiftwidth=2 sts=2 expandtab