comparison src/testdir/test_terminal.vim @ 11973:aec3df2af27c v8.0.0867

patch 8.0.0867: job and channel in a dict value not quoted commit https://github.com/vim/vim/commit/35422f45ba01806d357994f18cb9af64980c67e6 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 5 16:33:56 2017 +0200 patch 8.0.0867: job and channel in a dict value not quoted Problem: When using a job or channel value as a dict value, when turning it into a string the quotes are missing. Solution: Add quotes to the job and channel values. (Yasuhiro Matsumoto, closes #1930)
author Christian Brabandt <cb@256bit.org>
date Sat, 05 Aug 2017 16:45:04 +0200
parents bc0fee081e1e
children 5cc005cf312f
comparison
equal deleted inserted replaced
11972:94f8b639760a 11973:aec3df2af27c
15 call assert_equal(1, len(termlist)) 15 call assert_equal(1, len(termlist))
16 call assert_equal(buf, termlist[0]) 16 call assert_equal(buf, termlist[0])
17 17
18 let g:job = term_getjob(buf) 18 let g:job = term_getjob(buf)
19 call assert_equal(v:t_job, type(g:job)) 19 call assert_equal(v:t_job, type(g:job))
20
21 let string = string({'job': term_getjob(buf)})
22 call assert_match("{'job': 'process \\d\\+ run'}", string)
20 23
21 return buf 24 return buf
22 endfunc 25 endfunc
23 26
24 " Stops the shell started by Run_shell_in_terminal(). 27 " Stops the shell started by Run_shell_in_terminal().