]> granicus.if.org Git - vim/commitdiff
patch 8.0.1636: no test for term_dumpload() and term_dumpdiff() v8.0.1636
authorBram Moolenaar <Bram@vim.org>
Sat, 24 Mar 2018 13:30:32 +0000 (14:30 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 24 Mar 2018 13:30:32 +0000 (14:30 +0100)
Problem:    No test for term_dumpload() and term_dumpdiff().
Solution:   Add tests.

src/testdir/test_terminal.vim
src/version.c

index 78f73b6fb5cdd08c4ef0a068d5981525589e1735..29e2d7b13ddcade59f2aea5625930136ba4ca18a 100644 (file)
@@ -968,3 +968,30 @@ func Test_terminal_open_autocmd()
   unlet s:called
   au! repro
 endfunction
+
+func Check_dump01(off)
+  call assert_equal('one two three four five', trim(getline(a:off + 1)))
+  call assert_equal('~           Select Word', trim(getline(a:off + 7)))
+  call assert_equal(':popup PopUp                                   :', trim(getline(a:off + 20)))
+endfunc
+
+" just testing basic functionality.
+func Test_terminal_dumpload()
+  call assert_equal(1, winnr('$'))
+  call term_dumpload('dumps/Test_popup_command_01.dump')
+  call assert_equal(2, winnr('$'))
+  call assert_equal(20, line('$'))
+  call Check_dump01(0)
+  quit
+endfunc
+
+func Test_terminal_dumpdiff()
+  call assert_equal(1, winnr('$'))
+  call term_dumpdiff('dumps/Test_popup_command_01.dump', 'dumps/Test_popup_command_02.dump')
+  call assert_equal(2, winnr('$'))
+  call assert_equal(62, line('$'))
+  call Check_dump01(0)
+  call Check_dump01(42)
+  call assert_equal('           bbbbbbbbbbbbbbbbbb ', getline(26)[0:29])
+  quit
+endfunc
index b2959e30ad811efdaf5ee37b2d32f3e4b30c2460..71a67ce8f69b0779bc8bdca4615492dbda19765e 100644 (file)
@@ -766,6 +766,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1636,
 /**/
     1635,
 /**/