Mercurial > vim
changeset 25489:911fdca7f736 v8.2.3281
patch 8.2.3281: Vim9: TODO items in tests can be taken care of
Commit: https://github.com/vim/vim/commit/23e2e115154ef0bf05d809024eed328a46ed0f82
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Aug 3 21:16:18 2021 +0200
patch 8.2.3281: Vim9: TODO items in tests can be taken care of
Problem: Vim9: TODO items in tests can be taken care of.
Solution: Update test for now working functionality. (closes https://github.com/vim/vim/issues/8694)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 03 Aug 2021 21:30:04 +0200 |
parents | fbe646778e21 |
children | b5fc355d22f5 |
files | src/testdir/test_vim9_assign.vim src/testdir/test_vim9_func.vim src/testdir/test_vim9_script.vim src/version.c |
diffstat | 4 files changed, 8 insertions(+), 21 deletions(-) [+] |
line wrap: on
line diff
--- a/src/testdir/test_vim9_assign.vim +++ b/src/testdir/test_vim9_assign.vim @@ -1228,23 +1228,11 @@ def Test_assign_dict() d.somekey = 'someval' assert_equal({key: 'value', '123': 'qwerty', somekey: 'someval'}, d) - # unlet d.somekey - # assert_equal({key: 'value', '123': 'qwerty'}, d) + unlet d.somekey + assert_equal({key: 'value', '123': 'qwerty'}, d) END CheckDefAndScriptSuccess(lines) - # TODO: move to above once "unlet d.somekey" in :def is implemented - lines =<< trim END - vim9script - var d: dict<string> = {} - d['key'] = 'value' - d.somekey = 'someval' - assert_equal({key: 'value', somekey: 'someval'}, d) - unlet d.somekey - assert_equal({key: 'value'}, d) - END - CheckScriptSuccess(lines) - CheckDefFailure(["var d: dict<number> = {a: '', b: true}"], 'E1012: Type mismatch; expected dict<number> but got dict<any>', 1) CheckDefFailure(["var d: dict<dict<number>> = {x: {a: '', b: true}}"], 'E1012: Type mismatch; expected dict<dict<number>> but got dict<dict<any>>', 1) enddef
--- a/src/testdir/test_vim9_func.vim +++ b/src/testdir/test_vim9_func.vim @@ -2250,15 +2250,14 @@ def Test_double_nested_lambda() enddef def Test_nested_inline_lambda() - # TODO: use the "text" argument var lines =<< trim END vim9script def F(text: string): func(string): func(string): string return (arg: string): func(string): string => ((sep: string): string => { - return sep .. arg + return sep .. arg .. text }) enddef - assert_equal('--there', F('unused')('there')('--')) + assert_equal('--there++', F('++')('there')('--')) END CheckScriptSuccess(lines)
--- a/src/testdir/test_vim9_script.vim +++ b/src/testdir/test_vim9_script.vim @@ -188,8 +188,7 @@ def Test_const() var varlist = [7, 8] const constlist = [1, varlist, 3] varlist[0] = 77 - # TODO: does not work yet - # constlist[1][1] = 88 + constlist[1][1] = 88 var cl = constlist[1] cl[1] = 88 constlist->assert_equal([1, [77, 88], 3]) @@ -197,8 +196,7 @@ def Test_const() var vardict = {five: 5, six: 6} const constdict = {one: 1, two: vardict, three: 3} vardict['five'] = 55 - # TODO: does not work yet - # constdict['two']['six'] = 66 + constdict['two']['six'] = 66 var cd = constdict['two'] cd['six'] = 66 constdict->assert_equal({one: 1, two: {five: 55, six: 66}, three: 3})